.account-wrapper {
  width: 100%;
  max-width: 480px;
  background-color: var(--secondary-bg, #1d2d44);
  border: 1px solid rgba(197, 160, 89, 0.2);
  padding: 40px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  border-radius: 12px;
  position: relative;
  z-index: 2;
  margin: 120px auto 40px auto;
}

.account-box h1 {
  font-size: 28px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 30px;
  letter-spacing: 0.5px;
  color: var(--gold-accent, #c5a059);
}

.account-box form {
  display: flex;
  flex-direction: column;
}

.account-box input {
  padding: 14px 16px;
  margin-bottom: 20px;
  font-size: 16px;
  transition: all 0.3s ease;
}

.account-box button {
  padding: 14px;
  margin-top: 10px;
  font-size: 16px;
  letter-spacing: 1px;
}

.bottom-links {
  margin-top: 20px;
  text-align: center;
}

.bottom-links p {
  color: var(--text-muted, #e0e0e0);
  margin-bottom: 5px;
}

.bottom-links a {
  color: var(--gold-accent, #c5a059);
  text-decoration: none;
  font-size: 14px;
  transition: opacity 0.3s ease;
}

.bottom-links a:hover {
  text-decoration: underline;
  opacity: 0.8;
}

/* Mobile Responsive */
@media (max-width: 480px) {
  .account-wrapper {
    padding: 30px 20px;
    margin: 60px 20px 20px 20px;
  }

  .account-box h1 {
    font-size: 24px;
  }

  .account-box input,
  .account-box button {
    font-size: 15px;
  }
}

/* --- Standard Footer --- */
.fog-footer {
  background: #080c16 !important;
  padding: 30px 20px;
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  font-family: 'Bodoni Moda', serif;
  font-size: 14px;
  margin-top: auto;
  color: #f0ebd8;
  text-align: center;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
