/* ============================================================
   千阙云庭 - 登录页面样式
   ============================================================ */

.login-page {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 40%, #1e3a5f 100%);
}

.login-container {
    width: 100%;
    max-width: 420px;
    padding: 24px;
}

.login-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    padding: 52px 44px;
    text-align: center;
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.login-logo {
    margin-bottom: 20px;
}

.login-logo-icon {
    font-size: 64px;
    display: inline-block;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.login-title {
    font-size: 28px;
    font-weight: 700;
    color: #1f2329;
    margin-bottom: 4px;
}

.login-subtitle {
    font-size: 14px;
    color: #8f959e;
    margin-bottom: 24px;
}

.login-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #dee0e3, transparent);
    margin-bottom: 24px;
}

.login-desc {
    font-size: 15px;
    color: #646a73;
    margin-bottom: 28px;
    line-height: 1.6;
}

.btn-login {
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
    border-radius: 10px;
    justify-content: center;
    gap: 10px;
}

.login-hint {
    font-size: 12px;
    color: #8f959e;
    margin-top: 20px;
}
