body.login-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
}

.login-wrap {
    width: min(420px, calc(100% - 2rem));
    position: relative;
    z-index: 1;
}

.login-card {
    border-radius: 22px;
    padding: 2rem 1.75rem 1.75rem;
}

.login-card h1 {
    font-family: var(--font-display);
    text-align: center;
    margin: 0 0 0.35rem;
    font-size: 1.7rem;
}

.login-card .lead {
    text-align: center;
    color: var(--text-muted);
    margin: 0 0 1.25rem;
}

.brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    font-family: var(--font-display);
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.brand-mark {
    display: grid;
    place-items: center;
    width: 2.2rem;
    height: 2.2rem;
    border-radius: 0.7rem;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #062018;
    font-size: 0.85rem;
}

.login-card .btn {
    width: 100%;
    margin-top: 1.1rem;
}
