/* --- AVISO DE SUSCRIPCIÓN EN PANTALLA DE LOGIN --- */
.sohah-login-promo {
    background-color: #fff;
    border-left: 4px solid var(--sohah-teal-dark, #000);
    padding: 15px;
    margin-bottom: 20px;
    font-size: 14px;
    text-align: center;
    box-shadow: 0 1px 3px rgba(0,0,0,0.1);
    color: #555;
}

.sohah-login-promo strong {
    color: #333;
    font-size: 1.1em;
}

.sohah-login-promo a.sohah-login-link {
    display: inline-block;
    margin-top: 8px;
    color: var(--sohah-teal-dark, #009999);
    font-weight: bold;
    text-decoration: underline;
}

.sohah-login-promo a.sohah-login-link:hover {
    color: #000;
}

/* --- PERSONALIZACIÓN DEL LOGO Y COLORES SOHAH --- */

/* 1. Cambiar el Logo */
body.login div#login h1 a {
    /* Ajusta la ruta y el nombre del archivo según tu tema */
    background-image: url('../../images/logo_cabecera.png'); 
    background-size: contain;
    background-position: center center;
    background-repeat: no-repeat;
    width: 100%;
    height: 110px; /* Ajusta la altura según las proporciones de tu logo */
    margin-bottom: 20px;
}

/* 2. Fondo general de la página (opcional, para quitar el gris por defecto de WP) */
body.login {
    background-color: #009999; 
}

/* 3. Estilo de la caja del formulario */
body.login #loginform {
    border-top: 4px solid #009999; /* Tu color corporativo */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

/* 4. El botón de "Acceder" */
body.login .wp-core-ui .button-primary {
    background: #009999;
    border-color: #009999;
    color: #ffffff;
    text-shadow: none;
    box-shadow: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background 0.3s ease;
}
body.login .wp-core-ui .button-primary:hover,
body.login .wp-core-ui .button-primary:focus {
    background: #006666; /* Un tono más oscuro para el hover */
    border-color: #006666;
}

/* 5. Los enlaces de abajo ("¿Olvidaste tu contraseña?" y "Volver a SoHaH") */
body.login #nav a, 
body.login #backtoblog a {
    color: #009999;
    font-weight: 500;
}
body.login #nav a:hover, 
body.login #backtoblog a:hover {
    color: #000000;
}
.wp-core-ui .button-primary {
    background: #009999 !important;
    border-color: #009999 !important;
    color: #ffffff !important;
    text-shadow: none !important;
    box-shadow: none !important;
    border-radius: 4px !important;
    font-weight: bold;
    transition: background 0.3s ease;
}

.privacy-policy-link {
    color: #fff !important;
}
body.login #loginform {
    border-top: 0px solid #009999 !important;
    border-radius: 10px !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5) !important;
}