body.login {
    background: linear-gradient(to bottom, #f0f0f0, #ffffff);
}
.duc-login-wrapper {
    display: flex;
    justify-content: center;
    align-items: baseline;
    padding: 0px 20px;
    min-height: 100vh;
    box-sizing: border-box;
    overflow-y: auto;
    margin-bottom: 50px;
}
.duc-login-box {
    background: #f8f8f8;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px 40px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}
.duc-login-box h1 {
    margin-bottom: 10px;
    font-size: 26px;
    color: #333;
}
.duc-login-box p {
    margin-bottom: 20px;
    /*color: #555;*/
    color: #444;
}
.duc-login-form input[type="email"],
.duc-login-form input[type="password"] {
    width: 100%;
    padding: 10px;
    margin: 5px 0 15px;
    border: 1px solid #bbb;
    border-radius: 5px;
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    color: #333;
}
.duc-login-form input[type="email"]:focus,
.duc-login-form input[type="password"]:focus {
    border-color: #FF5722;
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.2);
    outline: none;
}
.duc-login-form input[type="submit"] {
    background-color: #FF5722;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.duc-login-form input[type="submit"]:hover {
    background-color: #e64a19;
}
.duc-logo {
    max-width: 180px;
    margin-bottom: 20px;
}
.duc-registrate {
    margin-top: 20px;
    font-size: 14px;
    /*color: #333;*/
    color: #444;
    text-align: center;
}
.duc-registrate a {
    color: #FF5722; /* color naranja característico de DaleUn.Click */
    text-decoration: none;
    font-weight: 600;
}
.duc-registrate a:hover {
    text-decoration: underline;
}
.duc-error {
    background-color: #ffe6e6;
    color: #a94442;
    border: 1px solid #f5c2c7;
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 15px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: relative;
}
.duc-error::before {
    content: "⚠️ ";
    font-weight: bold;
    margin-right: 5px;
}
.duc-mensaje-exito {
    background-color: #e6ffea;
    color: #2f7a32;
    border: 1px solid #8bc34a;
    padding: 12px 15px;
    border-radius: 6px;
    font-size: 15px;
    margin-bottom: 20px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: relative;
}
.duc-mensaje-exito::before {
    content: "✅ ";
    font-weight: bold;
    margin-right: 5px;
}

.duc-login-box div {
    margin-bottom: 20px;
    color: #444;
}
.duc-recaptcha {
    margin-bottom: 30px;
    text-align: center;
}
.duc-recaptcha > div {
    display: inline-block; /* 🔥 la magia para centrar el div interno */
}
.nv-page-title-wrap,
.nv-post-cover .nv-title-meta-wrap,
.nv-page-title-wrap .nv-page-title{
    display: none;
}


/*  LOGIN CON GMAIL */
/* Estilos para el contenedor que centra el botón de Google */
.duc-google-button-container {
    width: 310px; /* Ancho ajustado para centrar correctamente */
    margin: 20px auto 0; /* Centra el contenedor horizontalmente y añade margen superior */
}

/* Estilo para el separador "o" */
.duc-divider {
    text-align: center;
    margin: 20px 0;
    color: #6c757d;
    font-size: 14px;
}


@media (max-height: 700px) {
    .duc-login-wrapper {
        align-items: flex-start;
        padding-top: 60px;
        padding-bottom: 40px;
    }
}
@media (max-width: 768px) {
    .duc-login-box {
        padding: 20px;
        max-width: 90%;
        border-radius: 8px;
    }
    .duc-login-box h1 {
        font-size: 22px;
    }
    .duc-login-form input[type="email"],
    .duc-login-form input[type="password"],
    .duc-login-form input[type="submit"] {
        font-size: 15px;
        padding: 10px;
    }
    .duc-logo {
        max-width: 140px;
    }
    .duc-registrate {
        font-size: 13px;
    }
    .duc-error {
        font-size: 14px;
    }
}
@media (max-width: 480px) {
    .duc-login-wrapper{
        width:100%;
        padding: 0;
        margin-top: 30px;
    }
    .duc-login-box {
        padding: 15px;
        width: 100%;
        max-width: 100%;
    }
    .duc-login-box h1 {
        font-size: 20px;
    }
    .duc-registrate {
        font-size: 12px;
    }
}