/* Estilos para el formulario de registro WC + Acumbamail */
.wca-registration-container {
    max-width: 460px;
    margin: 2em auto;
}

.wca-registration-container h2 {
    color: #b92a34; 
    font-size: 28px;
}

.wca-form p {
    margin-bottom: 10px;
    font-size: 14px;
    line-height: 1.2;
}

.wca-form label {
    display: inline-block;
    margin-bottom: 5px;
    color: #7C7D7A;
    font-size: 14px;
    line-height: 1.2;
}

.wca-form input[type="text"],
.wca-form input[type="email"],
.wca-form input[type="password"] {
    width: 100%;
    border: 0;
    border-radius: 8px;
    box-sizing: border-box;
}

.wca-form input[type="checkbox"] {
    margin-right: 10px;
}

.wca-newsletter-box {
    background-color: #EAD6D7;
    padding: 15px 20px;
    border-radius: 10px;
    margin: 1.5em 0;
}

.wca-newsletter-box h4 {
        margin-bottom: 10px;
    color: #b92a34;
    font-size: 16px;
    font-weight: 700;
}

.wca-form input[type="submit"] {
    width: 100%;
    padding: 10px;
    background-color: #006a4e;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    letter-spacing: 0.03rem;
}

.wca-form input[type="submit"]:hover {
    background: #e9f2eb;
    color: #4a8a5a;
}

.wca-errors {
    background-color: #ffebe4;
    border: 1px solid #ff8a6b;
    color: #c9302c;
    padding: 15px;
    margin-bottom: 1em;
    border-radius: 4px;
}