/* ==========================================================================
   AUTH FORMS - Matches Zero Variant header design language
   ========================================================================== */
/* line 5, app/assets/stylesheets/auth_forms.scss */
.auth-card {
  padding: 1.5rem 0 0;
}

@media (min-width: 768px) {
  /* line 5, app/assets/stylesheets/auth_forms.scss */
  .auth-card {
    padding: 2rem 0 0;
  }
}

/* Bordered inputs */
/* line 14, app/assets/stylesheets/auth_forms.scss */
.auth-field {
  position: relative;
  margin-bottom: 0;
}

/* line 18, app/assets/stylesheets/auth_forms.scss */
.auth-field label {
  display: block;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #57534e;
  margin-bottom: 0.5rem;
}

/* line 29, app/assets/stylesheets/auth_forms.scss */
.auth-field input {
  width: 100%;
  padding: 16px 20px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1a1a1a;
  background: #fff;
  border: 1px solid #d4d4d4;
  border-radius: 10px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  appearance: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.02);
}

/* line 44, app/assets/stylesheets/auth_forms.scss */
.auth-field input::placeholder {
  color: #9ca3af;
}

/* line 48, app/assets/stylesheets/auth_forms.scss */
.auth-field input:focus {
  border-color: #1a1a1a;
  box-shadow: 0 0 0 3px rgba(26, 26, 26, 0.08);
}

/* Password field with toggle */
/* line 56, app/assets/stylesheets/auth_forms.scss */
.auth-field-password {
  position: relative;
}

/* line 59, app/assets/stylesheets/auth_forms.scss */
.auth-field-password input {
  padding-right: 2.75rem;
}

/* line 64, app/assets/stylesheets/auth_forms.scss */
.password-toggle {
  position: absolute;
  right: 0.75rem;
  bottom: 1rem;
  background: none;
  border: none;
  color: #a8a29e;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 0;
  transition: color 0.2s ease;
}

/* line 76, app/assets/stylesheets/auth_forms.scss */
.password-toggle:hover {
  color: #1a1a1a;
}

/* line 80, app/assets/stylesheets/auth_forms.scss */
.password-toggle svg {
  width: 1rem;
  height: 1rem;
}

/* Submit button */
/* line 87, app/assets/stylesheets/auth_forms.scss */
.auth-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 16px 28px;
  border: none;
  border-radius: 10px;
  background: #1a1a1a;
  color: #fff;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  cursor: pointer;
  transition: background-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* line 106, app/assets/stylesheets/auth_forms.scss */
.auth-submit:hover {
  background: #2d2d2d;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.12);
}

/* line 112, app/assets/stylesheets/auth_forms.scss */
.auth-submit:active {
  transform: translateY(0);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

/* Privacy / helper text */
/* line 119, app/assets/stylesheets/auth_forms.scss */
.auth-privacy {
  margin-top: 1.25rem;
  text-align: center;
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 11px;
  line-height: 1.7;
  color: #a8a29e;
}

/* line 127, app/assets/stylesheets/auth_forms.scss */
.auth-privacy a {
  color: #57534e;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* line 132, app/assets/stylesheets/auth_forms.scss */
.auth-privacy a:hover {
  color: #1a1a1a;
}
