.auth-body {
  background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.auth-container {
  width: 100%;
  max-width: 400px;
}

.auth-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: var(--box-shadow);
  padding: 2rem;
  animation: slideUp 0.5s ease-out;
}

@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.auth-header {
  text-align: center;
  margin-bottom: 2rem;
}

.logo {
  font-size: 2rem;
  font-weight: bold;
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.subtitle {
  color: var(--gray);
  font-size: 0.95rem;
}

.auth-form {
  margin-bottom: 1.5rem;
}

.auth-footer {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid #e9ecef;
}

/* RTL Support for Auth */
[dir="rtl"] .auth-header {
  text-align: center;
}

[dir="rtl"] .auth-footer {
  text-align: center;
}

/* Dark Mode for Auth */
[data-theme="dark"] .auth-card {
  background: var(--secondary-color);
  color: var(--light-gray);
}

[data-theme="dark"] .logo {
  color: var(--warm-brown);
}

[data-theme="dark"] .subtitle {
  color: var(--gray);
}

[data-theme="dark"] .auth-footer {
  border-top-color: var(--accent-color);
}
