﻿/* #region Booking Page Styles */
.form {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

    .form .success-message {
        font-size: 14.5px;
        background: var(--primary-tint);
        color: var(--primary-deep);
        padding: 8px 12px;
        border: 1px solid var(--primary);
        border-radius: 14px;
    }

        .form .success-message a {
            color: var(--ink);
        }

            .form .success-message a:hover {
                color: var(--ink-3);
            }

    .form .intro {
        font-size: 14.5px;
        color: var(--ink-3);
        margin: 0px 0px 24px;
    }

        .form .intro a {
            color: var(--ink-2);
            font-weight: 500;
        }

            .form .intro a:hover {
                color: var(--primary-deep);
            }

    .form .field {
        display: flex;
        flex-direction: column;
        gap: 7px;
        margin-bottom: 18px;
    }

    .form .full {
        width: 100%;
    }

    .form .half {
        width: 48%;
    }

    .form .field label {
        font-size: 13px;
        font-weight: 500;
        color: var(--ink-2);
    }

    .form .field input,
    .form .field textarea {
        width: 100%;
        font-family: inherit;
        font-size: 15px;
        background-color: var(--background-soft);
        color: var(--ink);
        padding: 12px 14px;
        border: 1px solid var(--trim);
        border-radius: 8px;
        outline: none;
        transition: border-color 0.3s, background 0.3s;
    }

        .form .field input:focus,
        .form .field textarea:focus {
            background: var(--background-card);
            border-color: var(--primary);
        }

    .form .field textarea {
        min-height: 88px;
        line-height: 1.5;
        resize: vertical;
    }

    .form .hint {
        font-size: 12px;
        color: var(--ink-4);
    }

    .form hr {
        width: 100%;
        height: 1px;
        background: var(--ink-4);
        margin: 6px 0px 22px;
    }

    .form .form-foot {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: wrap;
        gap: 16px;
        margin-top: 6px;
    }

        .form .form-foot .hint {
            max-width: 34ch;
        }


/* #endregion */
