.auth-hero {
  background-image: url('/static/img/contacto-hero.jpg');
  background-size: cover;
  background-position: center;
}

.auth-hero-overlay {
  background: linear-gradient(rgba(8,14,6,0.6), rgba(8,14,6,0.6));
  padding: 20em 0 7em;
  text-align: center;
}

.auth-hero-overlay h1 {
  color: var(--color-white);
}

.auth-form-section {
  padding: 4em 0;
  background-color: var(--color-bg-soft);
}

.auth-form-box {
  max-width: 500px;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: 30px;
  box-shadow: 0 0 60px rgba(0,0,0,0.1);
  padding: 3em;
}

.auth-form .form-field {
  margin-bottom: 20px;
}

.auth-form label {
  display: block;
  font-family: var(--font-heading);
  font-weight: 500;
  margin-bottom: 8px;
}

.auth-form input {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--color-light-border);
  border-radius: 10px;
  font-family: var(--font-text);
  font-size: 15px;
  background-color: var(--color-bg-soft);
}

.auth-form .btn {
  width: 100%;
  border: none;
  cursor: pointer;
  margin-top: 10px;
}

.auth-alt {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
}

.auth-alt a {
  color: var(--color-green-dark);
  font-weight: 600;
}

@media (max-width: 767px) {
  .auth-form-box {
    padding: 2em 1.5em;
  }
}

.auth-form-box form {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--color-light-border);
}

.auth-form-box form:last-of-type {
  border-bottom: none;
}

.auth-form-box .form-field p {
  font-size: 16px;
  color: var(--color-dark);
}

.auth-form-box .form-field {
  margin-bottom: 18px;
}
