/*
|--------------------------------------------------------------------------
| ClubPortal Login
|--------------------------------------------------------------------------
*/

.club-login {
    display: grid;
    gap: 1.25rem;
    max-width: 34rem;
    margin: 0 auto;
}

.club-login__intro {
    padding: 1.5rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    box-shadow: 0 0.75rem 2rem rgba(15, 23, 42, 0.06);
}

.club-login__eyebrow {
    margin: 0 0 0.45rem;
    color: #64748b;
    font-size: 0.78rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.club-login__title {
    margin: 0;
    color: #0f172a;
    font-size: clamp(2.2rem, 6vw, 3.6rem);
    line-height: 1.05;
}

.club-login__text {
    margin: 0.85rem 0 0;
    color: #475569;
    font-size: 1rem;
    line-height: 1.6;
}

.club-login__form {
    max-width: none;
    margin-top: 0;
}

.club-login__error {
    margin: 0;
    padding: 0.85rem 1rem;
    color: #7f1d1d;
    background: #fee2e2;
    border: 1px solid #fecaca;
    border-radius: 0.8rem;
    font-weight: 800;
    line-height: 1.45;
}

.club-login__notice {
    margin: 0;
    padding: 0.85rem 1rem;
    color: #166534;
    background: #dcfce7;
    border: 1px solid #86efac;
    border-radius: 0.8rem;
    font-weight: 800;
    line-height: 1.45;
}

.club-login__links {
    margin: -0.25rem 0 0;
    text-align: right;
}

.club-login__links a {
    color: #1f6f4a;
    font-weight: 800;
    text-decoration: none;
}

.club-login__links a:hover {
    text-decoration: underline;
}

.club-login__remember {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    justify-self: start;
    color: #475569;
    font-size: 0.95rem;
    font-weight: 800;
    line-height: 1.35;
    cursor: pointer;
}

.club-login__remember input {
    flex: 0 0 auto;
    width: 1.05rem;
    height: 1.05rem;
    margin: 0;
}

.club-account__profile {
    display: grid;
    gap: 0.75rem;
    padding: 1.25rem 1.5rem;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 1rem;
    box-shadow: 0 0.75rem 2rem rgba(15, 23, 42, 0.05);
}

.club-account__profile p {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    margin: 0;
    color: #475569;
}

.club-account__profile strong {
    color: #0f172a;
    overflow-wrap: anywhere;
    text-align: right;
}

.club-account__hint {
    margin: 0.15rem 0 0;
    color: #64748b;
    font-size: 0.85rem;
    line-height: 1.45;
}

@media (max-width: 640px) {
    .club-login__intro,
    .club-login__form,
    .club-account__profile {
        padding: 1.1rem;
        border-radius: 0.85rem;
    }

    .club-login__links {
        text-align: left;
    }

    .club-account__profile p {
        display: grid;
        gap: 0.25rem;
    }

    .club-account__profile strong {
        text-align: left;
    }
}
