/* 引入鸿蒙开源字体 */
@import url('https://cdn.jsdelivr.net/npm/harmonyos-font@1.0.0/dist/HarmonyOS_Sans_SC.css');

/* 全局字体设置 */
body, html {
  font-family: 'HarmonyOS Sans SC', sans-serif !important;
}

/* 登录页适配样式 */
.login-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom right, #f0f4ff, #e6e9ff);
}

.login-card {
  width: 90%;
  max-width: 400px;
  padding: 2rem;
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .login-card {
    max-width: 500px;
    padding: 3rem;
  }
}
