/* ============================================================================
   AUTH PAGES STYLES (signup.html, login.html)
   ============================================================================ */

body {
  font-family: 'Inter', sans-serif;
  background: #f5f5f5;
  margin: 0;
  padding: 20px;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 60px;
}

/* Alpha badge - fixed position in top-right corner */
.alpha-badge {
  position: fixed;
  top: 10px;
  right: 10px;
  height: 44px;
  width: auto;
  z-index: 9999;
  display: none;
}

.alpha-badge.visible {
  display: block;
}

/* Auth container */
.auth-container {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  padding: 40px;
  width: 100%;
  max-width: 400px;
}

.auth-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 32px;
  text-align: center;
  margin: 0 0 20px 0;
  color: #333;
  letter-spacing: 1px;
}

.auth-subtitle {
  text-align: center;
  color: #666;
  font-size: 14px;
  margin: 0 0 20px 0;
  line-height: 1.4;
}

/* Alpha disclaimer */
.alpha-disclaimer {
  background: linear-gradient(135deg, #fff3e0, #ffe0b2);
  border: 2px solid #ff9800;
  border-radius: 8px;
  padding: 15px;
  margin-bottom: 25px;
  text-align: center;
  display: none;
}

.alpha-disclaimer.visible {
  display: block;
}

.alpha-disclaimer-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 16px;
  color: #e65100;
  margin-bottom: 5px;
  letter-spacing: 1px;
}

.alpha-disclaimer-text {
  font-size: 13px;
  color: #5d4037;
  line-height: 1.4;
  margin: 0;
}

.alpha-disclaimer-text strong {
  color: #bf360c;
}

/* Form styles */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: #333;
}

.form-group input {
  padding: 12px 14px;
  font-size: 16px;
  border: 2px solid #ddd;
  border-radius: 6px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus {
  outline: none;
  border-color: #ff9800;
  box-shadow: 0 0 0 3px rgba(255, 152, 0, 0.15);
}

.form-group input::placeholder {
  color: #999;
}

.form-hint {
  font-size: 12px;
  color: #666;
}

/* OTP input special styling */
#otp-code {
  font-family: 'Bebas Neue', monospace;
  font-size: 18px;
  letter-spacing: 2px;
  text-transform: uppercase;
  text-align: center;
}

/* Error message */
.error-message {
  background: #ffebee;
  border: 1px solid #ef5350;
  color: #c62828;
  padding: 12px;
  border-radius: 6px;
  font-size: 14px;
  display: none;
}

/* Success message */
.success-message {
  background: #e8f5e9;
  border: 1px solid #66bb6a;
  color: #2e7d32;
  padding: 12px;
  border-radius: 6px;
  font-size: 14px;
  display: none;
}

/* Submit button */
.auth-button {
  background: #ff9800;
  color: #fff;
  border: none;
  padding: 14px 20px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 18px;
  letter-spacing: 1px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}

.auth-button:hover {
  background: #f57c00;
}

.auth-button:active {
  transform: scale(0.98);
}

.auth-button:disabled {
  background: #bdbdbd;
  cursor: not-allowed;
  transform: none;
}

/* Footer links */
.auth-footer {
  text-align: center;
  margin-top: 25px;
  font-size: 14px;
  color: #666;
}

.auth-footer a {
  color: #ff9800;
  text-decoration: none;
  font-weight: 600;
}

.auth-footer a:hover {
  text-decoration: underline;
}

.forgot-password-link {
  color: #666;
  font-size: 14px;
  text-decoration: none;
}
.forgot-password-link:hover {
  color: #ff9800;
  text-decoration: underline;
}

/* Back link */
.back-link {
  display: block;
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
  color: #666;
  text-decoration: none;
}

.back-link:hover {
  color: #ff9800;
}

/* Responsive */
@media (max-width: 480px) {
  body {
    padding: 10px;
    padding-top: 40px;
  }
  
  .auth-container {
    padding: 25px;
  }
  
  .auth-title {
    font-size: 28px;
  }
}
