

::placeholder {
    color: #aeb2b7 !important; 
    opacity: 1;             
}


::-webkit-input-placeholder { color: #aeb2b7 !important; } 
::-moz-placeholder { color: #aeb2b7 !important; }         
:-ms-input-placeholder { color: #aeb2b7 !important; }     


.flight-card {
    background: white;
    border-radius: 20px;
    padding: 30px;
    max-width: 700px;
    margin: auto;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.form-body {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-top: 20px;
}



.main-form-container {
    max-width: 700px;
    margin: 24px auto;
    background: white;
    border-radius: 40px; 
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    overflow: hidden; 
}


.card-header-blue {
    background-color: #1a375a; 
    color: white;
    padding: 50px 20px;
    text-align: center;
    border: none; 
}


.flight-card-body {
    padding: 30px 40px 40px 40px; 
}

/* Botón centrado y grande */
.btn-submit {
    background-color: #78B645;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s;
    margin-top: 10px;
}


/* Alineación de filas (Origen/Destino e Ida/Vuelta) */
.form-row {
    display: flex;
    gap: 25px; /* Espacio entre columnas */
}

.flex-1 {
    flex: 1;
}

.form-group {
    width: 100%;
}

.form-label {
    display: block;
    font-weight: 600;
    color: #444;
    margin-bottom: 10px;
    font-size: 15px;
}


.title{
      color: #FFFFFF;
}

.btn-final-comprar {
    background-color: #78B645 !important;
    color: white;
    border: none;
    padding: 10px 50px;
    font-weight: bold;
    border-radius: 20px !important;
    font-size: 1.1rem;
}

.btn-final-comprar:hover {
    
      background-color: #66A33A;
    color: white;

}
 

/* Contenedores de Input Estilo Cápsula */
.input-with-icon, .date-group {
    position: relative;
    background: #fff;
    border-radius: 50px; 
    padding: 12px 20px;
    display: flex;
    align-items: center;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    border: 1px solid #f0f0f0;
}

.input-with-icon input, 
.form-control-custom {
    border: none !important;       
    outline: none !important;      
    background: transparent !important; 
    box-shadow: none !important;   
    width: 100%;
    padding: 0;                   
    height: 100%;
    font-size: 14px;
    color: #333;
}


.input-with-icon {
    display: flex;
    align-items: center;
    background: #fff;            
    border: 1px solid #e9ecef;
    border-radius: 50px;          
    padding: 10px 20px;
    height: 45px;
    box-sizing: border-box;
}

.input-with-icon i {
    color: #666;
    margin-left: 10px;
}

/* Estilo para los selects de fecha */
.date-group {
    justify-content: space-between;
}

.date-label-hint {
    font-size: 12px;
    color: #333;
    font-weight: 600;
    margin-right: 10px;
}

.date-group select {
    border: none;
    background: transparent;
    outline: none;
    color: #999;
    font-size: 13px;
    cursor: pointer;
}

.divider {
    color: #ddd;
    margin: 0 5px;
}

/* Botón Cotizar */
.btn-submit {
    background-color: var(--color-secundario-verde);
    color: white;
    border: none;
    padding: 15px;
    border-radius: 50px;
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    margin-top: 20px;
    transition: 0.3s;
}

.btn-submit:hover {
    background-color: #66A33A;
    transform: translateY(-2px);
}
/* Ajuste de inputs para que no fuercen el ancho */
.form-control-custom {
    border: none;
    outline: none;
    width: 100%;
    background: transparent;
}


.date-group-custom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 50px; /* Estilo cápsula */
    padding: 8px 15px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.03);
    font-size: 13px;
}

.date-group-custom select {
    border: none;
    background: transparent;
    color: #aeb2b7;
    outline: none;
    cursor: pointer;
    font-size: 12px;
}


.date-label-hint {
    font-weight: 700;
    font-size: 11px;
    color: #333;
    white-space: nowrap; 
}

.input-with-icon {
    display: flex;
    align-items: center;
    background: #f8f9fa; 
    border: 1px solid #e9ecef;
    border-radius: 50px;
    padding: 10px 20px;
}


/* Contenedor principal de la fecha */
.date-group, .date-group-custom {
    display: flex !important;
    flex-direction: row !important; /* Fuerza a que sea horizontal */
    align-items: center;
    justify-content: space-between;
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 50px;
    padding: 5px 15px;
    height: 45px;
    width: 100%;
}

/* Estilo para los selectores */
.date-group select, .date-group-custom select {
    display: inline-block !important; /* Evita que ocupen toda la línea */
    width: auto !important;           /* Ancho ajustado al texto */
    border: none !important;
    background: transparent !important;
    outline: none !important;
    color: #aeb2b7;
    font-size: 13px;
    cursor: pointer;
    padding: 0 2px;
    margin: 0;
    
    /* Quita las flechas predeterminadas */
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
}

/* El texto "Elige una fecha" */
.date-label-hint {
    font-weight: 700;
    font-size: 11px;
    color: #333;
    white-space: nowrap;
    margin-right: 5px;
}

/* Los separadores | */
.divider {
    color: #ddd;
    margin: 0 2px;
    display: inline-block;
}

/* Ajuste para móviles */
@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
        gap: 20px;
    }
}