.com-marketplace-bookingauth {
    margin: 2rem 0;
}

.com-marketplace-bookingauth__layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.6fr);
    gap: 2rem;
}

.com-marketplace-bookingauth__title {
    font-size: 1.6rem;
    margin-bottom: 1.25rem;
}

.com-marketplace-bookingauth__card {
    background: #ffffff;
    border-radius: 0.5rem;
    box-shadow: 0 0.125rem 0.5rem rgba(15, 23, 42, 0.12);
    padding: 1.5rem 1.75rem;
}

.com-marketplace-bookingauth__offer-title {
    font-size: 1.25rem;
    margin: 0 0 0.5rem;
}

.com-marketplace-bookingauth__offer-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.15rem 0.6rem;
    border-radius: 999px;
    background: #0f766e;
    color: #ffffff;
    font-size: 0.8rem;
    margin-bottom: 0.75rem;
}

.com-marketplace-bookingauth__details {
    margin: 0;
}

.com-marketplace-bookingauth__detail {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.com-marketplace-bookingauth__detail dt {
    flex: 0 0 9rem;
    font-weight: 600;
    color: #4b5563;
}

.com-marketplace-bookingauth__detail dd {
    flex: 1 1 auto;
    margin: 0;
}

.com-marketplace-bookingauth__arrow {
    margin: 0 0.4rem;
    color: #9ca3af;
}

.com-marketplace-bookingauth__chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
}

.com-marketplace-bookingauth__chip {
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background: #eff6ff;
    color: #1d4ed8;
    font-size: 0.8rem;
}

.com-marketplace-bookingauth__auth .card {
    border-radius: 0.75rem;
    box-shadow: 0 0.1rem 0.45rem rgba(15, 23, 42, 0.12);
}

.com-marketplace-bookingauth__login-form .form-label {
    font-weight: 500;
}

@media (max-width: 991.98px) {
    .com-marketplace-bookingauth__layout {
        grid-template-columns: minmax(0, 1fr);
    }
}

/* Booking auth card with tabs */
.booking-auth-card {
    border-radius: 0.75rem;
    box-shadow: 0 0.1rem 0.45rem rgba(15, 23, 42, 0.12);
}

.booking-auth-card-title {
    font-size: 1.15rem;
    margin: 0 0 1.25rem;
    font-weight: 600;
}

.booking-auth-tabs {
    display: flex;
    border-bottom: 1px solid #ddd;
    margin-bottom: 20px;
}

.booking-auth-tabs .booking-auth-tab {
    flex: 1;
    padding: 12px;
    background: none;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    font-size: 1rem;
    color: #555;
}

.booking-auth-tabs .booking-auth-tab:hover {
    color: #333;
}

.booking-auth-tabs .booking-auth-tab.active {
    border-bottom-color: #ff4b1f;
    font-weight: 600;
    color: #222;
}

.booking-auth-content {
    min-height: 120px;
}

.booking-auth-panel[hidden] {
    display: none !important;
}

