/**
 * 员工登录页（复用 staff 设计变量与表单组件）
 */
@import url("staff.css");

body.staff-login-body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    background: linear-gradient(160deg, #ff6b35 0%, #ff8f5a 40%, #ffb347 100%);
    padding-bottom: 24px;
}

.staff-login-brand {
    text-align: center;
    color: #fff;
    margin-bottom: 28px;
}

.staff-login-brand__logo {
    width: 64px;
    height: 64px;
    background: rgba(255, 255, 255, 0.25);
    border-radius: 18px;
    margin: 0 auto 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    backdrop-filter: blur(8px);
}

.staff-login-brand__title {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.staff-login-brand__sub {
    font-size: 13px;
    opacity: 0.9;
    margin-top: 6px;
}

.staff-login-card {
    width: 100%;
    max-width: 400px;
    background: #fff;
    border-radius: 20px;
    padding: 32px 26px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.12);
}

.staff-login-card__title {
    font-size: 18px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 24px;
    color: var(--staff-text);
}

.staff-login-footer {
    margin-top: 24px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
}
