/**
 * Signup Page Styles
 */

.page-signup {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  padding-top: calc(var(--safe-area-top, 0px) + 16px);
  padding-bottom: calc(16px + var(--safe-area-bottom, 0px));
  background: transparent;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.page-signup::before {
  content: '';
  position: fixed;
  inset: 0;
  background:
    radial-gradient(ellipse at 50% 30%, rgba(214, 222, 35, 0.08) 0%, transparent 50%),
    rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.signup-form {
  width: 100%;
}

.signup-form .form-group {
  margin-bottom: 12px;
  width: 100%;
}

.signup-form .form-group label {
  display: block;
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  color: var(--color-chulas-lime);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.signup-form .form-control {
  width: 100%;
  padding: 12px 14px;
  font-family: var(--font-display);
  font-size: 16px;
  border: 2px solid rgba(214, 222, 35, 0.2);
  border-radius: 6px;
  background: rgba(214, 222, 35, 0.03);
  color: var(--color-text);
  transition: all var(--transition-fast);
  -webkit-appearance: none;
  appearance: none;
}

.signup-form .form-control:focus {
  outline: none;
  border-color: var(--color-chulas-lime);
  background: rgba(214, 222, 35, 0.06);
  box-shadow: 0 0 0 4px rgba(0,0,0,0);
}

.signup-form .form-control::placeholder {
  color: var(--color-text-muted);
}

.signup-form select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23d6de23' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 32px;
}

.birthday-inputs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.field-optional {
  font-weight: 400;
  color: var(--color-text-muted);
}

.field-hint {
  margin: 0 0 8px;
  font-family: var(--font-body);
  font-size: 11px;
  line-height: 1.4;
  color: var(--color-text-muted);
}

.signup-disclaimer {
  margin: 10px 0 16px;
  padding: 10px;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.04);
  font-family: var(--font-body);
  font-size: 9px;
  line-height: 1.5;
  color: var(--color-text-muted);
  text-align: center;
}

.btn-ghost {
  background: none;
  border: none;
  color: var(--color-text-tertiary);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 600;
  padding: 14px;
  cursor: pointer;
  text-align: center;
  width: 100%;
  transition: all var(--transition-fast);
}

.btn-ghost:active {
  color: var(--color-chulas-lime);
}
