/* signup.css */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "SF Pro Text",
    "Segoe UI", sans-serif;
  background: #f5f5f5;
  color: #111827;
}

.auth-layout {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.auth-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 32px 32px 28px;
  max-width: 420px;
  width: 100%;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.15);
}

.auth-title {
  margin: 0 0 8px;
  font-size: 24px;
  font-weight: 700;
}

.auth-subtitle {
  margin: 0 0 24px;
  font-size: 14px;
  color: #6b7280;
}

.auth-btn {
  width: 100%;
  border-radius: 999px;
  border: none;
  padding: 12px 18px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.06s ease, box-shadow 0.06s ease, background 0.1s ease;
}

.auth-btn--google {
  background: #111827;
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.35);
}

.auth-btn--google:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(15, 23, 42, 0.45);
}

.auth-btn--google:active {
  transform: translateY(0);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.3);
}

/* Google button icon sizing (override any global svg/button rules) */
#googleSignupBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

#googleSignupBtn .google-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

#googleSignupBtn .google-icon svg {
  width: 18px !important;
  height: 18px !important;
  display: block;
}


/* Prevent iOS Safari zoom on focus (inputs must be >= 16px) */
@media (max-width: 768px) {
  input,
  textarea,
  select,
  button {
    font-size: 16px !important;
  }

  /* If you use custom inputs inside wrappers */
  .input,
  .field input,
  .field textarea,
  .field select {
    font-size: 16px !important;
  }
}
