        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 */
    }

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

    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 */
    }

    input {
        color: white;
    }

    option {
        color: white;
        background-color: #2A3038;
    }

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

    label {
        color: white;
    }

    select {
        background-color: #2A3038;
    }

    .swal2-title {
        color: #fff !important;
    }

    .swal2-text {
        color: #fff !important;
    }
    .footer {
        background-color: #151414;
        padding: 20px 0;
        font-size: 14px;
        transition: all 0.3s;
        flex-shrink: 0;
        border-top: 1px solid #59d2ec;
}
    .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);
    }
        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;
            margin-top: 15px;
        }
        .title{
            text-align: center;
        }
    .intro-text {
        color: #d1d1d1;
        margin-bottom: 2.5rem;
        font-size: 1.5rem;
        line-height: 1.7;
        text-align: center;
        }
        .sections{
            color: #59d2ec;;
            text-align: center; 
            margin-bottom: 2%;         
        }
            .form-control {
    border-radius: 6px !important; /* Añade !important para asegurar que se aplique */
    border-color:rgb(69, 77, 79);
    background-color: #2A3038; 
    text-align: center;  
}
    .form-control:focus {
        box-shadow: 0 0 0 0.25rem #59d2ec;
      
}
    .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"]:focus,
    select:focus {
    background-color: #333333;
    color: #ffffff;
    text-align: center;
}
    option {
        color: #59d2ec; /* Texto de opciones en azul claro */
        text-align: center; /* Centra el texto de las opciones */
    }

        @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;
        }
    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; 
        }
    }
    
    /* 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: justify;
            text-justify: inter-character;
        }
        
        h2 {
            font-size: 1.8rem;
        }
    }
