/* booking.css - Professional Form Styles */

/* Custom Styling for Professional Look */
.input-style {
    font-size: 16px;
    padding: 12px 20px;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.input-style:focus {
    border-color: #007bff;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

.button-style {
 
    color: #fff;
    padding: 12px 20px;
    border-radius: 6px;
    font-size: 16px;
    transition: all 0.3s ease;
}

.button-style:hover {
    background-color: #b30000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.card {
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
    background-color: #ffffff;
}

.card-header {
    background-color: #007bff;
    color: white;
    font-weight: bold;
}

.card-body {
    padding: 40px;
}



label {
    font-size: 14px;
    font-weight: 500;
    color: #333;
}

.text-danger {
    font-size: 13px;
}
