.auth-wrapper {
    min-height: calc(100vh - var(--app-header-height));
    background:
        radial-gradient(circle at 16% 8%, rgba(244, 168, 127, 0.2), transparent 44%),
        radial-gradient(circle at 88% 95%, rgba(126, 227, 193, 0.16), transparent 45%),
        linear-gradient(180deg, rgba(12, 15, 20, 0.88), rgba(8, 10, 13, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
}

.login-card {
    border-radius: 1.35rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: 0 24px 42px rgba(0, 0, 0, 0.34);
    background: linear-gradient(165deg, rgba(20, 24, 31, 0.98), rgba(13, 16, 22, 0.98));
    backdrop-filter: blur(12px);
    overflow: hidden;
    color: var(--app-text);
}

.login-card-max {
    max-width: 420px;
}

.login-card-header {
    padding: 1.75rem 1.75rem 1rem 1.75rem;
    border-bottom: none;
    text-align: center;
}

.login-icon-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(145deg, rgba(244, 168, 127, 0.26), rgba(126, 227, 193, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem auto;
    font-size: 1.6rem;
    color: #ffd8bf;
}

.login-card-body {
    padding: 0 1.75rem 1.75rem 1.75rem;
}

.login-card input[type="text"],
.login-card input[type="email"],
.login-card input[type="password"] {
    width: 100%;
    border-radius: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    padding: 0.6rem 0.9rem;
    font-size: 0.95rem;
    outline: none;
    transition: box-shadow 0.15s ease, border-color 0.15s ease, background-color 0.15s ease;
    background-color: rgba(19, 23, 30, 0.95);
    color: var(--app-text);
}

.login-card input[type="text"]:focus,
.login-card input[type="email"]:focus,
.login-card input[type="password"]:focus {
    border-color: rgba(244, 168, 127, 0.58);
    box-shadow: 0 0 0 0.15rem rgba(244, 168, 127, 0.18);
}

.login-card input[type="text"]::placeholder,
.login-card input[type="email"]::placeholder,
.login-card input[type="password"]::placeholder {
    color: #8a9ab0;
}

.btn-login-primary {
    border-radius: 0.9rem;
    padding: 0.64rem 1rem;
    font-weight: 700;
}

.small-text-muted {
    font-size: 0.85rem;
    color: var(--app-text-muted);
}

.two-factor-card {
    border-radius: 1rem;
}

.two-factor-code-input {
    letter-spacing: 0.35rem;
    font-weight: 700;
}

.profile-avatar-circle {
    width: 72px;
    height: 72px;
}

.public-alert-icon {
    font-size: 1.5rem;
    line-height: 1;
}

.public-step-badge {
    width: 40px;
    height: 40px;
}

.public-hero {
    background: linear-gradient(135deg, rgba(245, 248, 252, 0.9), rgba(234, 241, 251, 0.85));
}

.public-chip {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgba(13, 110, 253, 0.2);
    background: rgba(13, 110, 253, 0.08);
    color: #0a58ca;
    border-radius: 999px;
    padding: 0.35rem 0.7rem;
    font-weight: 600;
}
