@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

.account-page {
  font-family: 'Montserrat', sans-serif;
}

/* Keep Font Awesome glyphs — do not inherit Montserrat on icon elements */
.account-page i[class*="fa-"],
.account-page .fas,
.account-page .far,
.account-page .fab {
  font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}

.account-page .fab {
  font-family: "Font Awesome 6 Brands" !important;
  font-weight: 400;
}

.account-page .fas,
.account-page .fa-solid {
  font-weight: 900;
}

.account-page .far,
.account-page .fa-regular {
  font-weight: 400;
}

.account-page {
  min-height: 100vh;
  background: linear-gradient(160deg, #f0f7ff 0%, #f8fafc 45%, #eef2ff 100%);
  padding: 90px 20px 60px;
}

.account-container {
  max-width: 640px;
  margin: 0 auto;
  animation: accFadeUp 0.6s ease forwards;
  opacity: 0;
  transform: translateY(24px);
}

@keyframes accFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.account-card {
  background: #fff;
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 12px 40px rgba(36, 107, 206, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(36, 107, 206, 0.08);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.account-card:hover {
  box-shadow: 0 16px 48px rgba(36, 107, 206, 0.12);
}

.account-header {
  margin-bottom: 28px;
}

.account-header h1 {
  font-size: 1.75rem;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 8px;
}

.account-status {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 500;
  background: #eff6ff;
  color: #246bce;
}

.account-status.active {
  background: #dcfce7;
  color: #166534;
}

.account-form label {
  display: block;
  margin: 16px 0 6px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #64748b;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.account-form input {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.account-form input:focus {
  outline: none;
  border-color: #246bce;
  box-shadow: 0 0 0 3px rgba(36, 107, 206, 0.15);
}

.account-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 12px 28px;
  background: linear-gradient(135deg, #246bce, #1e5aab);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 4px 14px rgba(36, 107, 206, 0.35);
}

.account-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(36, 107, 206, 0.4);
}

.account-btn.outline {
  background: transparent;
  color: #246bce;
  border: 1.5px solid #246bce;
  box-shadow: none;
}

.account-btn.outline:hover {
  background: #eff6ff;
}

.account-links {
  margin-top: 28px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.account-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 18px;
  background: linear-gradient(135deg, #eff6ff, #f8fafc);
  border: 1.5px solid #bfdbfe;
  border-radius: 12px;
  color: #1e40af;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.88rem;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.account-links a i {
  font-size: 1rem;
  color: #246bce;
}

.account-links a:hover {
  transform: translateY(-2px);
  border-color: #246bce;
  background: #eff6ff;
  box-shadow: 0 6px 18px rgba(36, 107, 206, 0.15);
}

@media (max-width: 480px) {
  .account-links { grid-template-columns: 1fr; }
}

.account-prompt {
  text-align: center;
  padding: 40px 20px;
}

.account-prompt a {
  color: #246bce;
  font-weight: 600;
}
