/*=========================================
 QuettaTaxiBooking - booking.css
=========================================*/

.booking-container{
    width:90%;
    max-width:1200px;
    margin:40px auto;
}

.booking-container h1{
    text-align:center;
    color:#003366;
    margin-bottom:30px;
    font-size:34px;
}

.booking-grid{
    display:grid;
    grid-template-columns:1fr 1.5fr;
    gap:30px;
}

/* Booking Cards */

.booking-card{
    background:#ffffff;
    border-radius:12px;
    padding:25px;
    box-shadow:0 8px 20px rgba(0,0,0,.12);
}

.booking-card h2{
    color:#003366;
    margin-bottom:20px;
    border-bottom:2px solid #FFD700;
    padding-bottom:10px;
}

.booking-card p{
    margin:12px 0;
    font-size:16px;
}

.booking-card strong{
    color:#003366;
}

/* Form */

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

.form-group label{
    display:block;
    margin-bottom:8px;
    font-weight:bold;
    color:#333;
}

.form-group input,
.form-group select{
    width:100%;
    padding:12px;
    border:1px solid #ccc;
    border-radius:8px;
    font-size:16px;
    outline:none;
    transition:0.3s;
}

.form-group input:focus,
.form-group select:focus{
    border-color:#003366;
    box-shadow:0 0 5px rgba(0,51,102,.3);
}

/* Button */

.login-btn{
    width:100%;
    padding:14px;
    background:#FFD700;
    color:#003366;
    border:none;
    border-radius:8px;
    font-size:18px;
    font-weight:bold;
    cursor:pointer;
    transition:.3s;
}

.login-btn:hover{
    background:#ffbf00;
}

/* Mobile */

@media(max-width:900px){

.booking-grid{

    grid-template-columns:1fr;

}

.booking-container h1{

    font-size:28px;

}

.booking-card{

    padding:20px;

}

}