/* Login page — extends /css/components.css */

.login-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.login-card {
    width: 100%;
    max-width: 400px;
}

.login-title {
    text-align: center;
    margin-bottom: var(--space-5);
}

.login-btn-flex {
    flex: 1;
    justify-content: center;
}

.login-btn-block {
    width: 100%;
    justify-content: center;
}

.divider {
    display: flex;
    align-items: center;
    margin: var(--space-4) 0;
}

.divider::before {
    content: '';
    flex: 1;
    border-bottom: 0.5px solid var(--c-border-strong);
}
