/* auth.css */

* {
  box-sizing: border-box;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI",
               Roboto, Helvetica, Arial, sans-serif;
}

body {
  margin: 0;
  min-height: 100vh;
  background: #f5f7fb;
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  padding: 36px 40px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.auth-title {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 8px;
  color: #111827;
}

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

.form-group {
  margin-bottom: 20px;
}

input {
  width: 100%;
  padding: 14px 14px;
  font-size: 15px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  outline: none;
}

input:focus {
  border-color: #2563eb;
}

button {
  width: 100%;
  padding: 14px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  background: #2563eb;
  color: white;
}

button:disabled {
  background: #9ca3af;
  cursor: not-allowed;
}

.helper-text {
  font-size: 13px;
  color: #6b7280;
  margin-top: 14px;
  text-align: center;
}

.error {
  font-size: 13px;
  color: #dc2626;
  margin-top: 12px;
  text-align: center;
}

.success {
  font-size: 13px;
  color: #16a34a;
  margin-top: 12px;
  text-align: center;
}
