body {
  font-family: 'Inter', 'Noto Sans TC', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #1D1D27;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: 100vh;
}

* {
  box-sizing: border-box;
}

img {
  display: block;
  max-width: 100%;
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: inherit;
}

input {
  border: none;
  outline: none;
  background: transparent;
  font-family: inherit;
  width: 100%;
}

/* CSS for section section:Header */
#section-header {
  width: 100%;
  background-color: #000000;
  display: flex;
  justify-content: center;
}

.header-container {
  width: 100%;
  padding: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 70px;
}

.header-left {
  display: flex;
  align-items: center;
  gap: 5px;
}

.icon-back {
  width: 24px;
  height: 24px;
}

.header-title {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.icon-wrapper {
  width: 24px;
  height: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.icon-wrapper img {
  width: 18px;
  height: 21px;
  object-fit: contain;
}

.nav-text {
  color: #ffffff;
  font-size: 12px;
  white-space: nowrap;
}

/* CSS for section section:LoginForm */
#section-login {
  width: 100%;
  flex-grow: 1;
}

.login-container {
  width: 100%;
  height: 100%;
  min-height: 805px;
  
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0px 20px 30px 20px;
  gap: 15px;
}

.page-title {
  color: #ffffff;
  font-size: 30px; /* Estimated from visual hierarchy */
  font-weight: 700;
  margin: 0 0 20px 0;
  text-align: center;
}

.form-group {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.input-field {
  width: 100%;
  height: 40px;
  background-color: #ffffff;
  border: 1px solid #918dbe;
  border-radius: 4px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  position: relative;
}

.text-input {
  flex: 1;
  color: #000000;
  font-size: 14px;
}

.text-input::placeholder {
  color: #69668b;
}

.icon-close {
  width: 24px;
  height: 24px;
  cursor: pointer;
}

.verification-field {
  padding-right: 10px;
  justify-content: space-between;
}

.verification-code {
  background-color: #e1dafe;
  border-radius: 4px;
  padding: 0 10px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #69668b;
  font-size: 14px;
  font-weight: 500;
}

.btn-login {
  width: 100%;
  height: 40px;
  background-color: #69668b; /* Fallback color */
  background: #69668b;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  margin-top: 10px;
}

.action-links {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  width: 100%;
}

.btn-secondary {
  flex: 1;
  height: 40px;
  background-color: #282835;
  border-radius: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 14px;
}