/* ===== Booking Form ===== */

.cbp-booking-wrapper{
    max-width:650px;
    margin:50px auto;
    padding:35px;
    background:#ffffff;
    border-radius:12px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.cbp-booking-wrapper h2{
    text-align:center;
    font-size:34px;
    font-weight:700;
    margin-bottom:30px;
    color:#222;
}

/* Form */

#cbp-booking-form{
    display:flex;
    flex-direction:column;
    gap:20px;
}

/* Field */

.cbp-field{
    display:flex;
    flex-direction:column;
}

.cbp-field label{
    font-size:15px;
    font-weight:600;
    color:#333;
    margin-bottom:8px;
}

/* Input & Select */

.cbp-field input,
.cbp-field select{
    width:100% !important;
    height:50px;
    padding:0 15px;
    font-size:15px;
    border:1px solid #d8d8d8;
    border-radius:8px;
    background:#fff;
    outline:none;
    box-sizing:border-box;
    transition:.3s;
}

.cbp-field input:focus,
.cbp-field select:focus{
    border-color:#0073aa;
    box-shadow:0 0 0 3px rgba(0,115,170,.15);
}

/* Button */

.cbp-submit-button{
    width:100%;
    height:52px;
    border:none;
    border-radius:8px;
    background:#0073aa;
    color:#fff;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    transition:.3s;
}

.cbp-submit-button:hover{
    background:#005f8c;
}

/* Message */

#cbp-message{
    margin-top:15px;
    text-align:center;
    font-weight:600;
}

/* Responsive */

@media (max-width:768px){

    .cbp-booking-wrapper{
        margin:20px;
        padding:20px;
    }

    .cbp-booking-wrapper h2{
        font-size:28px;
    }

}