        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 {
        background-color: #2A3038;
        /* Color de fondo deseado */
        color: white;
        /* Color del texto deseado */
    }

    input[type="text"]:focus,
    select:focus {
        background-color: #2A3038;
        /* Asegúrate de que el color de fondo no cambie al enfocar */
        color: white;
        /* Color del texto cuando está enfocado */
    }

    h1 {
        color: #59d2ec;
        font-weight: 600;
        margin: 2rem 0 1.5rem;
        position: relative;
        padding-bottom: 0.5rem;
        text-align: center;
    }

    h1:after {
        content: '';
        display: block;
        width: 80px;
        height: 3px;
        background: #59d2ec;
        margin: 0.5rem auto 0;
    }

    .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);
    }

    .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;
    }

    .form-control::placeholder {
        color: white;
        opacity: 1;
    }

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


    select {
        color: white;
    }

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

    .container2 {
        background-color: #1e1e22;
        padding-top: 30px;
        padding-bottom: 30px;
    }

    .center {
        padding-left: 250px;
    }

    .btn-wide {
        width: 200px;
    }

    .footer {
        background-color: #151414;
        padding: 20px 0;
        font-size: 14px;
        transition: all 0.3s;
        flex-shrink: 0;
        border-top: 1px solid #59d2ec;
    }

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

    .form-check-label {
        color: #ffffff !important;
        margin-left: 50px;
    }

    .form-check-input[type="radio"] {
        border-color: #59d2ec;
    }

    .form-check-input[type="radio"]:checked {
        background-color: #59d2ec;
    }

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

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

    .btn-outline-primary {
        color: #59d2ec;
        border-color: #59d2ec;
    }

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

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

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

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    .container {
        animation: fadeIn 0.6s ease-out forwards;
    }

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

    /* Responsive */
    @media (max-width: 768px) {


        h1 {
            font-size: 1.6rem;
            text-align: center;

        }

        h2 {
            font-size: 1.5rem;
        }

        .intro-text {
            text-align: justify;
            text-justify: inter-word;
        }

        img {
            width: 100%;
            height: auto;

        }
        .texto-responsive {
        margin-top: 5px; 
        display: block;   
    }
    }

    /* Añade esto para pantallas aún más pequeñas si es necesario */
    @media (max-width: 576px) {

        h1 {
            font-size: 1.6rem;
            text-align: center;
        }

        h2 {
            font-size: 1.8rem;
        }
    }