/* style/login.css */
/* 页面所有样式代码 - 遵循BEM命名规则，作用域限制在.page-login内 */

/* 通用样式 */
.page-login {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #333333; /* 浅色背景配深色文字 */
  background-color: var(--background-color, #FFFFFF); /* 确保背景色和文字对比度 */
  padding-top: var(--header-offset, 120px); /* 桌面端固定页头间距 */
}

.page-login__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-login__container--reverse {
  display: flex;
  flex-direction: row-reverse; /* For app download section */
  align-items: center;
  gap: 40px;
}

.page-login__section {
  padding: 80px 0;
  text-align: center;
}

.page-login__section-title {
  font-size: 36px;
  color: #26A9E0; /* 主色调 */
  margin-bottom: 20px;
  font-weight: bold;
}

.page-login__section-description {
  font-size: 18px;
  color: #555555;
  max-width: 800px;
  margin: 0 auto 40px auto;
}

/* HERO Section */
.page-login__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #e0f2f7, #ffffff); /* 淡蓝色渐变背景 */
}

.page-login__hero-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.page-login__hero-content {
  flex: 1;
  text-align: left;
}

.page-login__main-title {
  font-size: 48px;
  color: #26A9E0;
  margin-bottom: 20px;
  line-height: 1.2;
  font-weight: bold;
}

.page-login__main-description {
  font-size: 20px;
  color: #555555;
  margin-bottom: 40px;
}

.page-login__hero-image {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-login__hero-image img {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Login Card */
.page-login__login-card {
  background: #FFFFFF;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  max-width: 450px;
  margin-top: 30px;
  text-align: center;
}

.page-login__card-title {
  font-size: 28px;
  color: #26A9E0;
  margin-bottom: 30px;
  font-weight: bold;
}

.page-login__form-group {
  margin-bottom: 20px;
  text-align: left;
}

.page-login__form-label {
  display: block;
  font-size: 16px;
  color: #333333;
  margin-bottom: 8px;
  font-weight: 600;
}

.page-login__form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #cccccc;
  border-radius: 8px;
  font-size: 16px;
  box-sizing: border-box;
}