.auth-wrapper {
  min-height: 100vh;
  background: linear-gradient(135deg, #eaf2f4 0%, #fcf9f5 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.auth-card {
  width: 100%;
  max-width: 480px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.auth-header {
  background: #fcf9f5;
  padding: 2rem 2rem 1rem;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
}

.app-brand {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  text-decoration: none;
}
.app-brand-text {
  font-family: "Lora", serif;
  font-weight: 700;
  font-size: 1.25rem;
  color: #2e5d75;
}

.auth-title {
  font-family: "Lora", serif;
  font-weight: 700;
  font-size: 1.75rem;
  color: #2e5d75;
  margin-bottom: 0.5rem;
}

.auth-subtitle {
  font-family: "Inter", sans-serif;
  color: #5e6d74;
  font-size: 1rem;
  margin-bottom: 0;
}

.auth-body {
  padding: 2rem;
}

.trust-indicators {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e2e8f0;
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.25rem;
}
.trust-item i {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}
.trust-item small {
  font-family: "Inter", sans-serif;
  color: #5e6d74;
  font-size: 0.75rem;
  text-align: center;
}

.user-type-option {
  border: 2px solid #e2e8f0;
  border-radius: 8px;
  padding: 1rem;
  cursor: pointer;
  transition: all 0.15s ease;
  margin-bottom: 0.75rem;
}
.user-type-option:hover {
  border-color: var(--gold-primary, #d0a857);
  background-color: rgba(208, 168, 87, 0.05);
}
.user-type-option.selected {
  border-color: var(--gold-primary, #d0a857);
  background-color: rgba(208, 168, 87, 0.1);
}
.user-type-option input[type=radio] {
  display: none;
}

@media (max-width: 576px) {
  .auth-wrapper {
    padding: 1rem 0.5rem;
  }
  .auth-header,
  .auth-body {
    padding: 1.5rem;
  }
  .auth-title {
    font-size: 1.5rem;
  }
  .trust-indicators {
    gap: 1rem;
  }
  .trust-item i {
    font-size: 1rem;
  }
}

/*# sourceMappingURL=authentication.css.map */
