106 lines
1.7 KiB
CSS
106 lines
1.7 KiB
CSS
|
|
.booking-page {
|
|||
|
|
padding: 60px 20px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.booking-form-wrapper {
|
|||
|
|
background: #fff;
|
|||
|
|
padding: 40px;
|
|||
|
|
border-radius: 8px;
|
|||
|
|
box-shadow: 0 4px 15px rgba(0,0,0,0.1);
|
|||
|
|
border-top: 5px solid #0056b3;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.form-grid {
|
|||
|
|
display: grid;
|
|||
|
|
grid-template-columns: 1fr 1fr;
|
|||
|
|
gap: 40px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.form-heading {
|
|||
|
|
color: #0056b3;
|
|||
|
|
margin-bottom: 20px;
|
|||
|
|
font-size: 1.3rem;
|
|||
|
|
border-bottom: 1px solid #eee;
|
|||
|
|
padding-bottom: 10px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.field-group {
|
|||
|
|
margin-bottom: 20px;
|
|||
|
|
margin-right: 20px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.field-group label {
|
|||
|
|
display: block;
|
|||
|
|
font-weight: bold;
|
|||
|
|
margin-bottom: 8px;
|
|||
|
|
color: #333;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
::deep .custom-input {
|
|||
|
|
width: 100%;
|
|||
|
|
padding: 12px;
|
|||
|
|
border: 1px solid #ddd;
|
|||
|
|
border-radius: 5px;
|
|||
|
|
font-size: 1rem;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
::deep .textarea {
|
|||
|
|
height: 120px;
|
|||
|
|
resize: none;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/* Upload Styling */
|
|||
|
|
.upload-zone {
|
|||
|
|
background: #f8f9fa;
|
|||
|
|
border: 2px dashed #0056b3;
|
|||
|
|
padding: 20px;
|
|||
|
|
text-align: center;
|
|||
|
|
border-radius: 8px;
|
|||
|
|
margin-bottom: 25px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.small-text {
|
|||
|
|
font-size: 0.85rem;
|
|||
|
|
color: #666;
|
|||
|
|
margin: 10px 0;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.file-input {
|
|||
|
|
display: none;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.file-count {
|
|||
|
|
margin-top: 10px;
|
|||
|
|
font-size: 0.9rem;
|
|||
|
|
color: #0056b3;
|
|||
|
|
font-weight: bold;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.form-footer {
|
|||
|
|
text-align: center;
|
|||
|
|
margin-top: 30px;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.btn-large {
|
|||
|
|
background: #4CAF50;
|
|||
|
|
color: white;
|
|||
|
|
border: none;
|
|||
|
|
padding: 15px 40px;
|
|||
|
|
border-radius: 50px;
|
|||
|
|
font-weight: 700;
|
|||
|
|
cursor: pointer;
|
|||
|
|
box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
|
|||
|
|
transition: all 0.3s ease;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/* Match your mobile responsiveness */
|
|||
|
|
@media (max-width: 768px) {
|
|||
|
|
.form-grid {
|
|||
|
|
grid-template-columns: 1fr;
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
.booking-form-wrapper {
|
|||
|
|
padding: 20px;
|
|||
|
|
}
|
|||
|
|
}
|