/* style/login.css */
.page-login {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #FFF6D6; /* Text Main color for general content */
  background-color: #0A0A0A; /* Background color from custom配色 */
}

.page-login__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 20px;
  padding-top: 10px; /* Small top padding, body handles --header-offset */
  text-align: center;
  background-color: #0A0A0A;
}

.page-login__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
}

.page-login__hero-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
}

.page-login__hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.page-login__main-title {
  font-size: clamp(2em, 3.5vw, 3.2em);
  font-weight: 700;
  color: #F2C14E; /* Main brand color for H1 */
  margin-bottom: 20px;
  line-height: 1.2;
}

.page-login__intro-text {
  font-size: 1.1em;
  margin-bottom: 30px;
  color: #FFF6D6;
}

.page-login__login-form-wrapper {
  background: #111111; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
  width: 100%;
  max-width: 400px;
  box-sizing: border-box;
  border: 1px solid #3A2A12; /* Border color */
}

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

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

.page-login__form-input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #3A2A12;
  border-radius: 5px;
  background-color: #0A0A0A;
  color: #FFF6D6;
  font-size: 1em;
  box-sizing: border-box;
}

.page-login__form-input::placeholder {
  color: #777;
}

.page-login__login-button {
  display: block;
  width: 100%;
  padding: 15px 25px;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  color: #ffffff; /* Button text color */
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-login__login-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-login__form-links {
  margin-top: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.95em;
}

.page-login__forgot-password-link,
.page-login__register-link {
  color: #FFD36B; /* Glow color for links */
  text-decoration: none;
  transition: color 0.3s ease;
}

.page-login__forgot-password-link:hover,
.page-login__register-link:hover {
  color: #F2C14E;
  text-decoration: underline;
}

.page-login__separator {
  margin: 0 10px;
  color: #FFF6D6;
}

.page-login__register-text {
  color: #FFF6D6;
  margin: 0;
}

.page-login__section {
  padding: 60px 20px;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  background-color: #0A0A0A;
}

.page-login__section-title {
  font-size: 2.5em;
  color: #F2C14E;
  margin-bottom: 20px;
  font-weight: 700;
}

.page-login__section-description {
  font-size: 1.1em;
  color: #FFF6D6;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.page-login__features-grid,
.page-login__security-features,
.page-login__payment-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-login__card {
  background: #111111; /* Card BG */
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  text-align: center;
  border: 1px solid #3A2A12; /* Border color */
  color: #FFF6D6;
}

.page-login__feature-icon,
.page-login__payment-icon {
  width: 100%;
  height: auto;
  max-width: 250px;
  margin-bottom: 20px;
  border-radius: 8px;
  object-fit: cover;
}

.page-login__feature-title,
.page-login__security-title,
.page-login__payment-title,
.page-login__step-title {
  font-size: 1.5em;
  color: #FFD36B; /* Auxiliary color for titles */
  margin-bottom: 15px;
  font-weight: 600;
}

.page-login__feature-text,
.page-login__security-text,
.page-login__payment-text {
  font-size: 1em;
  color: #FFF6D6;
}

.page-login__steps-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 40px;
}

.page-login__step-block {
  text-align: left;
}

.page-login__step-list {
  list-style: none;
  padding: 0;
  margin-bottom: 25px;
}

.page-login__list-item {
  margin-bottom: 15px;
  padding-left: 25px;
  position: relative;
  color: #FFF6D6;
}

.page-login__list-item::before {
  content: '✔️'; /* Checkmark icon */
  position: absolute;
  left: 0;
  color: #F2C14E;
  font-size: 1.1em;
  top: 0;
}

.page-login__step-cta {
  display: inline-block;
  padding: 12px 25px;
  border-radius: 5px;
  font-size: 1em;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  color: #ffffff; /* Button text color */
  background: linear-gradient(180deg, #FFD86A 0%, #DDA11D 100%); /* Button color */
  transition: background-color 0.3s ease, transform 0.2s ease;
  border: none;
  cursor: pointer;
}

.page-login__step-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(242, 193, 78, 0.4);
}

.page-login__cta-payment {
  margin-top: 50px;
  background: #111111; /* Card BG */
  padding: 40px;
  border-radius: 10px;
  border: 1px solid #3A2A12;
}

.page-login__cta-payment-text {
  font-size: 1.2em;
  margin-bottom: 25px;
  color: #FFF6D6;
}

.page-login__faq-list {
  margin-top: 40px;
  text-align: left;
}