.auth-page {
    padding: 140px 0 100px;
    min-height: 100vh;
    background: var(--gray);
}

.auth-wrap {
    max-width: 520px;
    margin: 0 auto;
}

.auth-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.08);
    text-align: center;
}

.auth-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;

    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;

    color: var(--y);

    border: 1px solid rgba(254,195,10,0.3);
    background: rgba(254,195,10,0.06);

    padding: 6px 12px;
    border-radius: 999px;

    margin-bottom: 20px;
}

.auth-title {
    font-family: 'Oswald', sans-serif;
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 12px;
}

.auth-title span {
    color: var(--y);
}

.auth-desc {
    max-width: 340px;
    margin: 0 auto 32px;

    font-size: 15px;
    line-height: 1.7;
    color: rgba(0,0,0,0.5);
}

.qr-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 18px;
    border-radius: 24px;

    background: #fff;
    border: 1px solid rgba(0,0,0,0.06);

    box-shadow: 0 12px 40px rgba(0,0,0,0.06);

    margin-bottom: 28px;
}

.qr-img {
    width: 220px;
    height: 220px;
    border-radius: 12px;
}

.auth-actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.auth-note {
    font-size: 12px;
    color: rgba(0,0,0,0.35);
    line-height: 1.6;
}

.auth-divider {
    display: flex;
    align-items: center;
    gap: 12px;

    margin: 28px 0 20px;

    color: rgba(0,0,0,0.25);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.auth-divider::before,
.auth-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(0,0,0,0.08);
}

@media(max-width: 640px) {

    .auth-page {
        padding: 120px 0 80px;
    }

    .auth-card {
        padding: 28px 22px;
        border-radius: 20px;
    }

    .auth-title {
        font-size: 34px;
    }

    .qr-img {
        width: 190px;
        height: 190px;
    }

}