body.login {
    background: linear-gradient(to bottom, #f0f0f0, #ffffff);
}

.duc-login-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 20px;
    min-height: 100vh;
    box-sizing: border-box;
    overflow-y: auto;
}

.duc-login-box {    
    background: #f8f8f8;
    border: 1px solid #ccc;
    /*background: #ffffff;
    border: 1px solid #ddd;*/
    border-radius: 10px;
    padding: 30px 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 #ccc;
    border-radius: 5px;*/    
    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);
    /*background-color: #FF5722;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    font-size: 16px;*/
}

.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-recaptcha {
    margin-bottom: 20px;
    text-align: center;
}

.duc-recaptcha > div {
    display: inline-block; /* 🔥 la magia para centrar el div interno */
}


.nv-page-title-wrap .nv-page-title {
    display: none;
}

@media (max-height: 700px) {
    .duc-login-wrapper {
        align-items: flex-start;
        padding-top: 60px;
        padding-bottom: 40px;
    }
}
