:root {
    --auth__context-bg: #fff;
    --auth__context-btn-bg: #fff;
    --auth__context-btn-bg-active: #f1f0fa;
    --auth__context-btn-color: #414141;
}

.auth-page {
    --bg: var(--bg);
    --text: var(--text-secondary);
    --border: var(--surface-gray-4);

    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: var(--bg);
    color: var(--text);
    min-height: 100svh;
}

.auth-layout {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-top: 2rem;
}

@media (min-width: 768px) {
    .auth-layout {
        align-items: center;
    }
}




.auth__card {
    width: 100%;
    max-width: 380px;
    --bg: var(--bg);
    overflow-x: hidden;
    border-radius: 1.5rem;
    padding: 2.3rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.auth__context {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    background-color: var(--auth__context-bg);
}

.auth__context-btn {
    --bg: var(--bg);
    --text: var(--text-secondary);
    --border: var(--surface-gray-4);
    flex: 1;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    color: var(--text);
    background-color: var(--bg);
    height: 2.6rem;
    padding: 0 1rem;
    border-radius: 0.75rem;
    border: 1px solid var(--border);
    font-size: var(--font-label--md);
    font-weight: 500;
}
.auth__context-btn:hover {
    background-color: var(--surface-gray-4);
    border-color: var(--surface-gray-4);
    color: var(--text-primary);
}

.auth__context-btn.active {
    background-color: var(--primary-400);
    border-color: var(--primary-400);
    color: var(--text-white);
}


.auth__stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 1.75rem;
}

.auth__logo {
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    text-transform: uppercase;
}
.auth__logo a {
    color: var(--text-muted-700);
}
.auth__logo a:hover {
    color: var(--text-primary);
}

.auth-content--sm {
    width: 100%;
    max-width: none;
}

.auth__info {
    font-size: var(--font-label--xs);
    line-height: 1.6;
    color: var(--text-muted-500);
    max-width: 85%;
}

