/* 登录页面专用样式 */
[x-cloak] { 
    display: none !important; 
}

/* 设备检测样式 */
.mobile-only {
    display: none;
}

.desktop-only {
    display: block;
}

@media (max-width: 768px) {
    .mobile-only {
        display: block;
    }
    .desktop-only {
        display: none;
    }
}

/* 登录页面专用样式 */
.login-bg {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
    min-height: 100vh !important;
}

.login-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

/* 重置密码页面专用样式 */
.reset-bg {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%) !important;
    min-height: 100vh !important;
}

.reset-card {
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.95);
}

/* 通知组件样式 */
.notification {
    position: fixed;
    top: 1rem;
    right: 1rem;
    z-index: 50;
    transform: translateX(100%);
    transition: all 0.3s ease;
}

.notification.show {
    transform: translateX(0);
}

.notification-content {
    background: white;
    border-radius: 0.5rem;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-left: 4px solid;
    padding: 1rem;
    max-width: 20rem;
    width: 20rem;
}

.notification-icon {
    height: 1.5rem;
    width: 1.5rem;
}

.notification-close {
    color: #9ca3af;
    transition: color 0.2s ease;
}

.notification-close:hover {
    color: #6b7280;
}

/* 成功通知 */
.notification-success {
    border-left-color: #10b981;
}

.notification-success .notification-icon {
    color: #10b981;
}

/* 错误通知 */
.notification-error {
    border-left-color: #ef4444;
}

.notification-error .notification-icon {
    color: #ef4444;
}

/* 警告通知 */
.notification-warning {
    border-left-color: #f59e0b;
}

.notification-warning .notification-icon {
    color: #f59e0b;
}

/* 信息通知 */
.notification-info {
    border-left-color: #3b82f6;
}

.notification-info .notification-icon {
    color: #3b82f6;
}
