/* ============================
   RESET & BASE
============================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #ffffff;
  color: #1f2937;
  line-height: 1.6;
}

/* ============================
   PAGE WRAPPER
============================ */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 20px;
}

/* ============================
   CARD
============================ */
.auth-card {
  width: 100%;
  max-width: 440px;
  padding: 42px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 22px 48px rgba(0, 0, 0, 0.06);
  text-align: center;
}

/* ============================
   HEADINGS
============================ */
.auth-title {
  font-size: 2rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 10px;
}

.auth-subtitle {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 28px;
  font-style: italic;
}

/* ============================
   FORM
============================ */
.auth-form p {
  text-align: left;
  margin-bottom: 18px;
}

.auth-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  color: #374151;
}

.auth-form input {
  width: 100%;
  padding: 12px 14px;
  font-size: 0.95rem;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-form input:focus {
  border-color: #6366f1;
  box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.15);
}

/* ============================
   BUTTON
============================ */
.btn-auth {
  width: 100%;
  margin-top: 16px;
  padding: 14px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  background: #111827;
  color: #ffffff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.btn-auth:hover {
  background: #000000;
  transform: translateY(-1px);
}

/* ============================
   QUOTE
============================ */
.auth-quote {
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid #e5e7eb;
}

.auth-quote p {
  font-size: 0.85rem;
  color: #6b7280;
  font-style: italic;
}

/* ============================
   RESPONSIVE
============================ */
@media (max-width: 480px) {
  .auth-card {
    padding: 32px 24px;
  }

  .auth-title {
    font-size: 1.7rem;
  }
}
