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

        .footer {
                background-color: #151414;
                padding: 20px 0;
                font-size: 14px;
                transition: all 0.3s;
                flex-shrink: 0;
                border-top: 1px solid #59d2ec;
}
        
        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;
}
        
    .form-control::placeholder {
        color: #ffffff; /* Texto del placeholder en azul claro */
        opacity: 1;
        text-align: center; /* Centra el texto del placeholder */
    }
        .form-control {
    border-radius: 6px !important; /* Añade !important para asegurar que se aplique */   
    background-color: #2A3038;
    border-color:rgb(69, 77, 79);
}
    .form-control:focus {
        box-shadow: 0 0 0 0.25rem #59d2ec;
             
}
        
        option {
            color: #59d2ec;
        }
        

        .sections{
            color: #59d2ec;;
            text-align: center; 
            margin-bottom: 2%;         
        }
        
        .container2 {
            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-label {
            color: #59d2ec;
            font-weight: 500;
            margin-bottom: 0.5rem;
            display: block;
        }

        label{
            color: #ffffff;
        }
        
        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;
        }
        
        .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;
        }
        
        small.text-danger {
            display: block;
            margin-top: 0.5rem;
            color: #ff6b6b !important;
        }
        
        .form-section {
            margin-bottom: 2.5rem;
        }
        
        #particles-js {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            pointer-events: none;
            opacity: 0.3;
        }
        
    .intro-text {
        color: #d1d1d1;
        margin-bottom: 2.5rem;
        font-size: 1.5rem;
        line-height: 1.7;
        text-align: center;
        }
        
        /* Animaciones */
        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(20px); }
            to { opacity: 1; transform: translateY(0); }
        }
        
        .container2 {
            animation: fadeIn 0.6s ease-out forwards;
        }
        
         /* 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;
        }
    }
    
    /* 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;
        }
    }
