body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: #f4f5f7;
  margin: 0;
  padding: 0;
}

.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0b8457, #085e3b);
}

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

.auth-card-header {
  text-align: center;
  margin-bottom: 24px;
}

.auth-card-title {
  font-size: 1.5rem;
  margin: 0;
  color: #1f2933;
}

.auth-card-subtitle {
  margin-top: 8px;
  font-size: 0.9rem;
  color: #6b7280;
}

.auth-form-group {
  margin-bottom: 16px;
}

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

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

.auth-input:focus {
  border-color: #0b8457;
  box-shadow: 0 0 0 2px rgba(11, 132, 87, 0.25);
}

.auth-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
}

.auth-remember {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  color: #4b5563;
}

.auth-submit-btn {
  width: 100%;
  margin-top: 16px;
  padding: 10px 12px;
  border-radius: 999px;
  border: none;
  background-color: #0b8457;
  color: #ffffff;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background-color 0.15s ease, transform 0.1s ease;
}

.auth-submit-btn:hover {
  background-color: #0a6c47;
}

.auth-submit-btn:active {
  transform: translateY(1px);
}

.auth-footer {
  margin-top: 20px;
  text-align: center;
  font-size: 0.8rem;
  color: #9ca3af;
}

@media (max-width: 480px) {
  .auth-card {
    border-radius: 0;
    min-height: 100vh;
    box-shadow: none;
  }
}

