﻿@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

/* ── Reset & Base ── */
*, *::before, *::after {
    box-sizing: border-box;
}

/* ── Background cover image ── */
.logincover {
    position: fixed;
    inset: 0;
    z-index: 0;
}

    .logincover .banner-image {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

/* ── Login area wrapper ── */
.login_area,
.register_area {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    /*    min-height: 100vh;*/
    padding: 24px 16px;
    width: 100%;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.login_form {
}

/* ── Card Shell ── */
.card-shell {
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15), 0 4px 16px rgba(0,0,0,0.08);
    width: 100%;
    overflow: hidden;
    animation: fadeUp 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── Header Band ── */
.card-header-band {
    background: #fff;
    padding: 5px 40px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    position: relative;
    overflow: hidden;
}

    .card-header-band::before {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, transparent, #2f5596, #2f5596, transparent);
    }

.logo-wrap {
    border-radius: 50%;
    padding: 10px;
    width: 88px;
    height: 88px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .logo-wrap img {
        width: 64px;
        height: 64px;
        object-fit: contain;
    }

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #000;
    letter-spacing: 0.04em;
    text-align: center;
    margin: 0;
}

.gold-rule {
    width: 56px;
    height: 2px;
    background: linear-gradient(90deg, #c9a84c, #e2c47a);
    border-radius: 2px;
    margin: 4px auto 0;
    display: none;
}

/* ── Card Body ── */
.card-body {
    padding: 24px 36px 28px;
    max-height: 75vh;
    overflow-y: auto;
    overflow-x: hidden;
}

/* ── Two-column content grid ── */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1px 1fr;
    gap: 0 24px;
    align-items: flex-start;
}

.col-divider {
    background: #e8e4dc;
    align-self: stretch;
}

/* ── Left copy column ── */
.copy-col {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: calc(75vh - 140px);
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px;
}

.copy-eyebrow {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #2f5596;
}

.copy-lead {
    font-size: 1.05rem;
    font-weight: 600;
    color: #0d1f3c;
    margin: 0;
}

.copy-body {
    font-size: 0.875rem;
    color: #000;
    margin: 0;
    line-height: 1.6;
}

    .copy-body a,
    .copy-col > p a {
        color: #2f5596;
    }

.copy-pull-quote {
    border-left: 3px solid #182f53;
    padding: 10px 16px;
    background: #edf4ff;
    border-radius: 0 8px 8px 0;
    font-size: 0.9rem;
    font-style: italic;
    color: #0d1f3c;
    line-height: 1.6;
}

/* ── Benefits Section ── */
.benefits-section {
    /*    margin-top: 16px;*/
    padding: 14px 0;
    border-top: 1px solid #e8e4dc;
    border-bottom: 1px solid #e8e4dc;
}

.benefits-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0d1f3c;
    margin: 0 0 10px 0;
}

.benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .benefits-list li {
        font-size: 0.8rem;
        color: #000;
        line-height: 1.4;
        margin-bottom: 6px;
        padding-left: 16px;
        position: relative;
    }

        .benefits-list li::before {
            content: "◆";
            position: absolute;
            left: 0;
            color: #c9a84c;
            font-size: 0.6rem;
        }

        .benefits-list li:last-child {
            margin-bottom: 0;
        }


.pricing-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: #0d1f3c;
    margin: 0 0 8px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.pricing-cost {
    font-size: 0.85rem;
    color: #0d1f3c;
    margin: 0 0 7px 0;
    line-height: 1.4;
}

    .pricing-cost strong {
        /*        color: #c9a84c;*/
        font-size: 1rem;
        font-weight: 700;
    }

.pricing-venues {
    font-size: 0.78rem;
    color: #000;
    margin: 0;
    line-height: 1.5;
}

/* ── Right clubs column ── */
.clubs-scroll {
    max-height: calc(75vh - 140px);
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 6px;
    /* Custom scrollbar — WebKit
    scrollbar-width: thin;
    scrollbar-color: #c9a84c #f0ede8; */
}

/*    .clubs-scroll::-webkit-scrollbar {
        width: 5px;
    }

    .clubs-scroll::-webkit-scrollbar-track {
        background: red;
        border-radius: 10px;
    }

    .clubs-scroll::-webkit-scrollbar-thumb {
        background: #c9a84c;
        border-radius: 10px;
    }

        .clubs-scroll::-webkit-scrollbar-thumb:hover {
            background: #a8883a;
        }*/

.clubs-col {
    display: flex;
    flex-direction: column;
}

.clubs-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #000;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}

    .clubs-label::after {
        content: "";
        flex: 1;
        height: 1px;
        background: #e8e4dc;
    }

.club-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 0;
    border-bottom: 1px solid #e8e4dc;
    transition: background 0.2s, padding 0.2s;
}

    .club-row:last-child {
        border-bottom: none;
    }

.club-thumb-wrap {
    position: relative;
    flex-shrink: 0;
    width: 56px;
    height: 56px;
}

.club-thumb {
    width: 56px;
    height: 56px;
    object-fit: contain;
    border-radius: 10px;
    background: #f1f1f1;
    display: block;
}

.club-thumb-badge {
    position: absolute;
    bottom: -4px;
    right: -4px;
    width: 18px;
    height: 18px;
    background: #c9a84c;
    border-radius: 50%;
    border: 2px solid #fff;
    display: none;
    align-items: center;
    justify-content: center;
}

    .club-thumb-badge i {
        font-size: 7px;
        color: #0d1f3c;
    }

.club-info h5 {
    font-size: 0.88rem;
    font-weight: 600;
    color: #0d1f3c;
    margin: 0 0 3px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.club-info p {
    font-size: 0.78rem;
    color: #000;
    line-height: 1.5;
    margin: 0;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

/* ── CTA area — button + sign-in on ONE row ── */
.cta-area {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.btn-primary-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #0d1f3c 0%, #1a3358 100%);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1.8px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 40px;
    border-radius: 50px;
    border: 1.5px solid transparent;
    white-space: nowrap;
    transition: all 0.3s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

    .btn-primary-cta::before {
        content: "";
        position: absolute;
        inset: 0;
        background: #486592;
        opacity: 0;
        transition: opacity 0.3s;
    }

    .btn-primary-cta:hover::before {
        opacity: 1;
    }

    .btn-primary-cta:hover {
        color: #fff;
        border-color: #182f53;
        box-shadow: 0 8px 30px rgba(186,186,186,0.6);
        transform: translateY(-2px);
    }

    .btn-primary-cta span,
    .btn-primary-cta i {
        position: relative;
        z-index: 1;
    }

.signin-text {
    font-size: 0.85rem;
    color: #000;
    margin: 0;
    white-space: nowrap;
}

    .signin-text a {
        color: #0d1f3c;
        font-weight: 600;
        text-decoration: none;
        border-bottom: 1px solid #182f53;
        padding-bottom: 1px;
        transition: color 0.2s;
    }

        .signin-text a:hover {
            color: #c9a84c;
        }

/* ── Responsive: Tablet (≤ 860px) ── */
@media (max-width: 860px) {
    .login_form {
        max-width: 700px;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 24px 0;
    }

    .col-divider {
        display: none;
    }

    .card-body {
        padding: 20px 24px 24px;
        max-height: 90vh;
    }

    .copy-col {
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
    }

    .card-header-band {
        padding: 20px 24px 18px;
    }
}

/* ── Responsive: Mobile (≤ 560px) ── */
@media (max-width: 560px) {
    .login_area,
    .register_area {
        padding: 16px 12px;
        align-items: flex-start;
        padding-top: 20px;
    }

    .card-shell {
        border-radius: 14px;
    }

    .card-header-band {
        padding: 16px 18px 14px;
    }

    .logo-wrap {
        width: 72px;
        height: 72px;
    }

        .logo-wrap img {
            width: 52px;
            height: 52px;
        }

    .card-title {
        font-size: 1.1rem;
    }

    .card-body {
        padding: 16px 18px 20px;
        max-height: none;
    }

    .copy-col {
        max-height: none;
        overflow-y: visible;
        padding-right: 0;
    }

    .copy-lead {
        font-size: 0.95rem;
    }

    .copy-body {
        font-size: 0.8rem;
    }

    .benefits-list li {
        font-size: 0.75rem;
        margin-bottom: 5px;
    }

    .pricing-cost {
        font-size: 0.8rem;
    }

    .pricing-venues {
        font-size: 0.75rem;
    }

    .cta-area {
        flex-direction: column;
        gap: 12px;
        margin-top: 16px;
    }

    .btn-primary-cta {
        width: 100%;
        padding: 14px 24px;
        font-size: 0.78rem;
    }

    .signin-text {
        white-space: normal;
        text-align: center;
    }
}

/* ── Responsive: Very small (≤ 360px) ── */
@media (max-width: 360px) {
    .card-body {
        padding: 14px 14px 18px;
    }

    .card-title {
        font-size: 1rem;
    }

    .btn-primary-cta {
        font-size: 0.73rem;
        letter-spacing: 1.2px;
    }

    .benefits-list li {
        font-size: 0.75rem;
    }

    .pricing-cost {
        font-size: 0.78rem;
    }

    .pricing-venues {
        font-size: 0.75rem;
    }
}


.login_page, .forgot_page, .register_page {
    padding: 10px 0px 0px !important;
}
.pricing-title:last-of-type,
.pricing-venues {
  display: none;
}

