/* Signup page */

body.auth-page {
  margin: 0;
  min-height: 100vh;
  background-color: #fff;
  background-image: url('../images/homepage-banner-bg.jpg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

body.auth-page > header {
  background: transparent;
  border-bottom: 0;
}

.auth-main {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 20px 80px;
  min-height: calc(100vh - 200px);
}

.auth-card {
  width: 100%;
  max-width: 480px;
  padding: 40px 36px;
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.03);
}

.auth-card-title {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
  color: #2F2F2F;
  text-align: center;
}

.auth-card-subtitle {
  margin: 0 0 28px;
  font-size: 15px;
  color: #7D7D7D;
  text-align: center;
}

.auth-form {
  display: grid;
  gap: 16px;
}

.auth-field label {
  display: block;
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 500;
  color: #585858;
}

.auth-field input {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid #d9d4ce;
  border-radius: 999px;
  background: #fff;
  font-size: 15px;
  color: var(--color-text-primary);
  outline: none;
}

.auth-field input:focus {
  border-color: var(--color-accent-soft);
  box-shadow: 0 0 0 3px rgba(251, 88, 12, 0.12);
}

.auth-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 52px;
  margin-top: 8px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--color-accent), var(--color-accent-soft));
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.auth-submit:hover {
  opacity: 0.9;
}

.auth-footer-text {
  margin: 24px 0 0;
  text-align: center;
  font-size: 14px;
  color: #7D7D7D;
}

.auth-footer-text a {
  color: var(--color-accent) !important;
  text-decoration: none !important;
  font-weight: 600;
}

.auth-footer-text a:hover {
  text-decoration: underline !important;
}

.auth-error {
  margin: 8px 0 0;
  font-size: 13px;
  line-height: 1.4;
  color: #dc2626;
}

.auth-help {
  margin: 8px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: #7D7D7D;
}

.auth-field .relative input {
  padding-right: 3rem;
}

