.book-appointment-bg {
    background: linear-gradient(135deg, #170d3a 60%, #273c75 100%);
    min-height: 100vh;
}

.card {
    background: #fff;
    border-radius: 1.5rem;
}

.card-body {
    background: #fafbff;
    border-radius: 1.25rem;
}

.card h1 {
    color: #AB7442;
}

.form-group {
    margin-bottom: 1rem;
    text-align: left;
}

form label {
    font-weight: 600;
    color: #170d3a;
    margin-bottom: 0.5rem;
    display: block;
}

form input,
form select,
form textarea {
    border-radius: 0.5rem !important;
    border: 1px solid #d1d5db;
    padding: 0.5rem 1rem;
    background: #f6f8fc;
    color: #170d3a;
    width: 100%;
    margin-bottom: 0.5rem;
}

form input:focus,
form select:focus,
form textarea:focus {
    border-color: #AB7442;
    box-shadow: 0 0 0 0.15rem rgba(171, 116, 66, 0.15);
    background: #fff;
    color: #170d3a;
}

.btn-primary,
.btn-secondary,
.btn-danger {
    border-radius: 2rem;
    font-weight: 600;
    margin-right: 0.5rem;
}

@media (max-width: 768px) {
    .card-body {
        padding: 1.5rem;
    }
}