.auth-page {
    min-height: 100vh;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 24px;

    background:
        radial-gradient(
            circle at top,
            #202633 0%,
            #11141a 35%,
            #0d0f13 70%
        );
}

.auth-card {
    width: 100%;
    max-width: 430px;

    padding: 38px;

    border: 1px solid #292d36;
    border-radius: 18px;

    background: #15181f;

    box-shadow:
        0 24px 70px rgba(0, 0, 0, 0.35);
}

.auth-brand {
    margin-bottom: 32px;
}

.auth-brand-name {
    font-size: 14px;
    font-weight: 700;

    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: #858c9b;
}

.auth-title {
    margin-top: 10px;

    font-size: 30px;
    font-weight: 700;
}

.auth-description {
    margin-top: 10px;

    color: #989eaa;

    font-size: 14px;
    line-height: 1.6;
}

.auth-form {
    display: flex;
    flex-direction: column;

    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;

    gap: 8px;
}

.form-group label {
    font-size: 13px;
    font-weight: 600;

    color: #c5c8cf;
}

.form-group input {
    width: 100%;

    padding: 13px 14px;

    border: 1px solid #323743;
    border-radius: 10px;

    background: #101218;
    color: #ffffff;

    outline: none;

    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.form-group input:focus {
    border-color: #6775ff;

    box-shadow:
        0 0 0 3px rgba(103, 117, 255, 0.12);
}

.auth-button {
    width: 100%;

    padding: 13px 16px;

    border: none;
    border-radius: 10px;

    background: #6875f5;
    color: #ffffff;

    font-weight: 700;

    transition:
        transform 0.15s ease,
        opacity 0.15s ease;
}

.auth-button:hover {
    opacity: 0.92;
}

.auth-button:active {
    transform: scale(0.99);
}

.form-errors,
.errorlist {
    list-style: none;

    color: #ff7c7c;

    font-size: 13px;
    line-height: 1.5;
}

.qr-wrapper {
    display: flex;
    justify-content: center;

    margin: 26px 0;
}

.qr-wrapper img {
    width: 210px;
    height: 210px;

    padding: 12px;

    border-radius: 14px;

    background: #ffffff;
}