/* Wallance auth pages */
.wa-page {
    min-height: calc(100vh - 56px);
    padding: 36px 0 56px;
    background:
        radial-gradient(circle at 12% 18%, rgba(23, 23, 23, .05), transparent 32%),
        linear-gradient(180deg, #f7f4f0 0%, #efe8df 100%);
    color: #171411;
}

.wa-shell {
    width: min(980px, calc(100% - 28px));
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(0, .95fr) minmax(0, 1.05fr);
    gap: 0;
    background: rgba(255, 255, 255, .9);
    border: 1px solid rgba(0, 0, 0, .07);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(28, 22, 16, .1);
}

.wa-aside {
    padding: 42px 36px;
    background:
        linear-gradient(160deg, rgba(23, 23, 23, .92), rgba(44, 38, 32, .88)),
        url('') center/cover;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 520px;
}

.wa-aside-brand {
    font-family: Georgia, "Times New Roman", serif;
    font-size: 32px;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none !important;
}

.wa-aside h2 {
    margin: 28px 0 12px;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 4vw, 40px);
    line-height: 1.12;
    color: #fff;
}

.wa-aside p {
    margin: 0;
    color: rgba(255, 255, 255, .78);
    line-height: 1.55;
    font-size: 14px;
    max-width: 28ch;
}

.wa-aside-foot {
    margin-top: 32px;
    font-size: 12px;
    color: rgba(255, 255, 255, .55);
    font-weight: 600;
}

.wa-card {
    padding: 42px 40px;
}

.wa-kicker {
    margin: 0 0 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #7a6f64;
}

.wa-card h1 {
    margin: 0;
    font-family: Georgia, "Times New Roman", serif;
    font-size: clamp(28px, 4vw, 36px);
    line-height: 1.1;
    color: #15120f;
}

.wa-lead {
    margin: 10px 0 26px;
    color: #6b6259;
    font-size: 14px;
    line-height: 1.5;
}

.wa-form {
    display: grid;
    gap: 14px;
}

.wa-field label {
    display: block;
    margin-bottom: 6px;
    font-size: 12px;
    font-weight: 800;
    color: #3a322b;
}

.wa-field label span {
    color: #b42318;
}

.wa-field input {
    width: 100%;
    height: 46px;
    padding: 0 14px;
    border: 1px solid rgba(0, 0, 0, .1);
    border-radius: 12px;
    background: #fbfaf8;
    color: #171717;
    font-size: 14px;
    outline: none;
    transition: border-color .15s ease, background .15s ease, box-shadow .15s ease;
}

.wa-field input:focus {
    border-color: #171717;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(23, 23, 23, .08);
}

.wa-error {
    display: block;
    margin-top: 6px;
    color: #b42318;
    font-size: 12px;
    font-weight: 700;
}

.wa-row {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 2px;
}

.wa-check {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 650;
    color: #5f564d;
    cursor: pointer;
    user-select: none;
}

.wa-check input {
    width: 16px;
    height: 16px;
    accent-color: #171717;
}

.wa-link {
    color: #171717 !important;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none !important;
}

.wa-link:hover {
    text-decoration: underline !important;
}

.wa-submit {
    width: 100%;
    height: 48px;
    margin-top: 8px;
    border: 0;
    border-radius: 999px;
    background: #171717 !important;
    color: #fff !important;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;
    transition: background .15s ease;
}

.wa-submit:hover {
    background: #2c2620 !important;
    color: #fff !important;
}

.wa-alt {
    margin: 18px 0 0;
    text-align: center;
    font-size: 13px;
    color: #6b6259;
}

.wa-alt a {
    color: #171717 !important;
    font-weight: 800;
    text-decoration: none !important;
}

.wa-alt a:hover {
    text-decoration: underline !important;
}

.wa-divider {
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 18px 0 0;
    color: #9a9087;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
}

.wa-divider::before,
.wa-divider::after {
    content: "";
    flex: 1;
    height: 1px;
    background: rgba(0, 0, 0, .08);
}

.wa-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 44px;
    margin-top: 12px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, .1);
    background: #fff !important;
    color: #171717 !important;
    font-size: 13px;
    font-weight: 800;
    text-decoration: none !important;
}

.wa-secondary:hover {
    background: #f3eee8 !important;
    color: #171717 !important;
}

@media (max-width: 820px) {
    .wa-shell {
        grid-template-columns: 1fr;
    }

    .wa-aside {
        min-height: auto;
        padding: 28px 24px;
    }

    .wa-aside p {
        max-width: none;
    }

    .wa-card {
        padding: 28px 22px 32px;
    }
}
