.date-selects {
        display: flex;
        justify-content: center; /* Centra los elementos */
    }
    .form-check-input:checked {
    background-color: #59d2ec !important;
}
    .texto-responsive {
        margin-top: 2px;  
        display: block; 
    }

    .date-selects select {
        max-width: 200px;
        background-color: #4a4a4a; /* Fondo gris oscuro */
        color: #a8d0e6; /* Texto en azul claro */
        text-align: center; /* Centra el texto de las opciones */
    }

    .form-control::placeholder {
        color: #ffffff; /* Texto del placeholder en azul claro */
        opacity: 1;
        text-align: center; /* Centra el texto del placeholder */
    }

    option {
        color: #59d2ec; /* Texto de opciones en azul claro */
        text-align: center; /* Centra el texto de las opciones */
    }

    body {
    background-color: #151414;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    }

    .form-control {
    border-radius: 6px !important; /* Añade !important para asegurar que se aplique */
    border-color:rgb(69, 77, 79);   
}
    .form-control:focus {
        box-shadow: 0 0 0 0.25rem #59d2ec;     
}

    .intro-text {
        color: #d1d1d1;
        margin-bottom: 2.5rem;
        font-size: 1.5rem;
        line-height: 1.7;
        text-align: center;
        }

    .form-check-label{
        color: #ffffff !important;
    }

    .container{
        background-color: #1e1e22;
        padding: 2.5rem;
        max-width: 1040px;
        margin: 2rem auto;
        border-radius: 12px;
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
    }

    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
}

    .container{
        animation: fadeIn 0.6s ease-out forwards;
    }
            h1 {
            color: #59d2ec;
            font-weight: 600;
            margin: 2rem 0 1.5rem;
            position: relative;
            padding-bottom: 0.5rem;
        }
        
        h1:after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: #59d2ec;
            margin: 0.5rem auto 0;
        }

        .sections{
            color: #59d2ec;;
            text-align: center; 
            margin-bottom: 2%;         
        }

        input:-webkit-autofill,
        input:-webkit-autofill:hover,
        input:-webkit-autofill:focus,
        input:-webkit-autofill:active {
            -webkit-box-shadow: 0 0 0 1000px #2A3038 inset !important;
            box-shadow: 0 0 0 1000px #2A3038 inset !important;
            -webkit-text-fill-color: #ffffff !important;
        }

        input[type="text"],
    select {
        color: #d1d1d1; /* Texto gris claro */
        text-align: center; /* Centra el texto en los inputs */
    }

input[type="text"]:focus,
select:focus {
    color: #ffffff;
    text-align: center;
}

    .btn-wide {
        width: 200px;
        padding: 10px 20px;
        font-weight: 600;
        letter-spacing: 0.5px;
        transition: all 0.3s ease;
        margin-top: 1.5rem;
    }

    .curp {
        text-align: center;
        margin: 0 auto; /* Centra horizontalmente */
        max-width: 100%; /* Evita desbordamiento */
    }

    /* Para pantallas grandes (escritorio) */
    @media (min-width: 992px) {
        .curp {
            margin-left: 300px;
            margin-right: 0;
            text-align: center;
        }
    }

    /* Para pantallas medianas (tablets) */
    @media (min-width: 768px) and (max-width: 991.98px) {
        .curp {
            margin-left: 100px;
            margin-right: 100px;
            text-align: center;
        }
    }

    /* Para pantallas pequeñas (móviles) */
    @media (max-width: 767.98px) {
        .curp {
            margin-left: 0;
            margin-right: 0;
            text-align: center;
            padding: 0 15px; /* Añade padding lateral en móviles */
        }
        
        /* Campo CURP mismo ancho que otros campos en móvil */
        .curp .form-control,
        .curp input[type="text"] {
            width: 100% !important;
            max-width: 100% !important;
        }
    }
        
    .btn-outline-primary {
        color: #59d2ec;
        border-color: #59d2ec;
    }

    .btn-outline-primary:hover {
        background-color: #59d2ec;;
        color:  #151414;
    }


    .footer {
        background-color: #151414;
        padding: 20px 0;
        font-size: 14px;
        transition: all 0.3s;
        flex-shrink: 0;
        border-top: 1px solid #59d2ec;
}
img {
    width: 100%; /* Asegura que la imagen no exceda el ancho de su contenedor */
    height: 435px;    /* permite que la altura se ajuste proporcionalmente */
    display: block;  /* Para eliminar posibles espacios debajo de la imagen si está dentro de un div */
    margin: 0 auto;  /* Si necesitas centrarla horizontalmente, aunque el div padre ya lo hace */
}
/* Responsive */
    @media (max-width: 768px) {

        
        h1 {
            font-size: 1.6rem;
            text-align: justify;
            text-justify: inter-character;
        }
        
        h2 {
            font-size: 1.5rem;
        }
        
        .intro-text {
            text-align: justify;
            text-justify: inter-word;
        }
        img{
            width: 100%; 
            height: auto; 
                    
        }
        .texto-responsive {
        margin-top: 7px;  
        display: block; 
    }
    } 
    /* para pantallas aún más pequeñas si es necesario */
    @media (max-width: 576px) {
        
        h1 {
            font-size: 1.6rem;
            text-align: justify;
            text-justify: inter-character;
        }
        
        h2 {
            font-size: 1.8rem;
        }
    }