/* Estilos para el formulario de registro de DaleUn.Click */
.duc-registro-container {    
    max-width: 500px;
    margin: 20px auto 50px auto;
    padding: 20px 30px;
    background: #f8f8f8;
    border-radius: 10px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
    border: 1px solid #ccc;
    width: 100%;
}

.duc-registro-container h1 {
    color: #FF5722;
    margin-bottom: 15px;
}

/* NUEVO: Contenedor de campo */
.duc-form-group {
    margin-bottom: 20px;
    text-align: left;
}

.duc-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.duc-form-group input[type="email"],
.duc-form-group input[type="password"],
.duc-form-group select,
.duc-form-group input[type="submit"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #bbb;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    background-color: #ffffff;
    color: #333;
    font-size: 15px;
}

.duc-form-group input[type="email"]:focus,
.duc-form-group input[type="password"]:focus,
.duc-form-group select:focus {
    border-color: #FF5722;
    box-shadow: 0 0 0 3px rgba(255, 87, 34, 0.2);
    outline: none;
}

.duc-form-group 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-form-group input[type="submit"]:hover {
    background-color: #e64a19;
}

.duc-logo img {
    max-width: 150px;    
}

.duc-bienvenida {
    text-align: left;
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.5;
    color: #555;
}


.duc-accede {
    margin-top: 40px;
    font-size: 14px;
    color: #333;
    text-align: center;
    margin-bottom: 0px;
}

.duc-accede a {
    color: #FF5722;
    text-decoration: none;
    font-weight: 600;
}

.duc-accede 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-top: 40px;
    margin-bottom: 30px;
    text-align: center;    
}

.duc-recaptcha > div {
    display: inline-block;    
}

.duc-checkbox label {
    font-size: 14px;
    color: #444;
    display: block;
    line-height: 1.5;
    cursor: pointer;
}

.duc-checkbox input[type="checkbox"] {
    margin-right: 8px;
}

.duc-checkbox a {
    color: #FF5722;
    text-decoration: none;
    font-weight: 600;
}

.duc-checkbox a:hover {
    text-decoration: underline;
}


.nv-page-title-wrap,
.nv-post-cover .nv-title-meta-wrap,
.nv-page-title-wrap .nv-page-title {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .duc-registro-container {
        padding: 20px;
        max-width: 90%;
        border-radius: 8px;
    }

    /*.duc-registro-form {
        padding: 20px;
    }*/

    .duc-form-group input,
    .duc-form-group select,
    .duc-form-group input[type="submit"] {
        font-size: 15px;
        padding: 10px;
    }

    .duc-bienvenida {
        font-size: 1em;
    }

    .duc-accede {
        font-size: 13px;
    }

    .duc-logo img {
        max-width: 120px;
    }
}

@media (max-width: 480px) {
    .duc-registro-container {
        margin: 20px 0px;
        padding: 10px;
        max-width: 100%;
    }

    /*.duc-registro-form {
        padding: 15px;
    }*/

    .duc-form-group input[type="submit"] {
        width: 100%;
    }

    .duc-bienvenida {
        font-size: 0.95em;
    }

    .duc-error {
        font-size: 14px;
    }
}