.flight_booking_form {
    display: flex;
    justify-content: center;
    align-items: center;
    /* background: #f2f2f2; */
    margin: 20px 20px ;
}

.card-form-flight-booking {
    width: 80%;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-form-flight-booking h2 {
    font-size: 30px;
    text-align: center;
    margin-bottom: 20px;
    font-family: Arial, sans-serif;
}

.form-row-flight-booking {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    color: rgb(64, 63, 63);
    margin-bottom: 6px;
    font-weight: bold;
    font-size: 14px;
    font-family: Arial, sans-serif;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 10px;
    border-radius: 10px;
    border: 1px solid #ccc;
    background: #e9e9e9;
    font-size: 14px;
}


.btn-submit {
    width: 50%;
    padding: 12px;
    background: #0B8CD3;
    color: #fff;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 16px;
    margin-top: 10px;
}

.btn-submit:hover {
    background: lightblue;
    color: black;
    transition: 0.5s ease;
    box-shadow: 3px 3px 3px 3px rgba(0, 0, 1, 0.6);
}

/* Responsive: Mobile par ek hi column */
@media (max-width: 768px) {
    .form-row-flight-booking {
        grid-template-columns: 1fr;
    }
}