/* ==================== */
/* Booking Form         */
/* ==================== */

.form-title{
    padding-bottom: 1rem;
}

.booking-form-container {
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 0 8px 0 rgba(240, 91, 137, 1);
    padding: 1.5rem;
    width: 100%;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-row {
    display: flex;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    flex: 1;
}

.form-group--full {
    width: 100%;
}

.form-group label {
    font-family: 'Jost', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #7C51A1;
}

.form-group .optional {
    font-weight: 400;
    text-transform: none;
    color: #aaa;
    font-size: 0.75rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Manrope', sans-serif;
    font-size: 0.95rem;
    color: #3c3048;
    background-color: #FFF7F9;
    border: 1.5px solid #e8d6e0;
    border-radius: 10px;
    padding: 0.6rem 0.85rem;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    width: 100%;
    resize: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #f05b89;
    box-shadow: 0 0 0 3px rgba(240, 91, 137, 0.15);
}

.booking-submit {
    align-self: flex-start;
    margin-top: 0.25rem;
}

/* ==================== */
/* HubSpot Form Styling */
/* ==================== */

.hs-form-frame {
    max-width: 100% !important;
}

