/* Estilos para el formulario de registro de DaleUn.Click */
.duc-registro-form {
    max-width: 500px;
    /*background: #ffffff;    */
    background: #f8f8f8;
    border: 1px solid #ccc; /* opcional, para igualar el borde con el login */
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    font-family: 'Segoe UI', sans-serif;
}

.duc-registro-form p {
    margin-bottom: 20px;
}

.duc-registro-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.duc-registro-form input,
.duc-registro-form select {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.07);
    background-color: #fefefe; /* blanco muy tenue */
}

.duc-registro-form input:focus,
.duc-registro-form select:focus {
    outline: none;
    border-color: #0573e1;
    box-shadow: 0 0 0 3px rgba(5, 115, 225, 0.15);
}



.duc-registro-form input[type="submit"] {
    background-color: #0573e1;
    color: white;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.duc-registro-form input[type="submit"]:hover {
    background-color: #045bb0;
}
.duc-registro-container {
    max-width: 480px;
    margin: 50px auto;
    padding: 20px 30px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    text-align: center;
}

.duc-logo img {
    max-width: 150px;
    margin-bottom: 20px;
}

.duc-registro-container h1 {
    color: #FF5722; /* color naranja DaleUn.Click */
    margin-bottom: 15px;
}

.duc-bienvenida {
    text-align: left;
    font-size: 1.1em;
    margin-bottom: 30px;
    /*color: #444;*/
    line-height: 1.5;
    color: #555;
}


/**/
.duc-accede {
    margin-top: 20px;
    font-size: 14px;
    color: #333;
    text-align: center;
}

.duc-accede a {
    color: #FF5722; /* color naranja característico de DaleUn.Click */
    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-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;
}