

.auth-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f7fb;
  padding: 20px;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.auth-card {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  border-radius: 14px;
  padding: 32px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
}



.auth-card h1 {
  font-size: 24px;
  margin-bottom: 10px;
  color: #1f2937;
}

.auth-subtitle {
  font-size: 14px;
  color: #6b7280;
  margin-bottom: 24px;
  line-height: 1.4;
}


#forgot-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

#forgot-form input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  font-size: 14px;
  outline: none;
  transition: all 0.2s ease;
}

#forgot-form input:focus {
  border-color: #3b82f6;
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}


#forgot-form button {
  margin-top: 6px;
  padding: 12px 14px;
  border: none;
  border-radius: 10px;
  background: #3b82f6;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

#forgot-form button:hover {
  background: #2563eb;
}

#forgot-form button:disabled {
  background: #93c5fd;
  cursor: not-allowed;
}



#forgot-message {
  margin-top: 14px;
  font-size: 14px;
  min-height: 20px;
}

#forgot-message p {
  margin: 0;
  padding: 10px 12px;
  border-radius: 8px;
}

#forgot-message p.success {
  background: #ecfdf5;
  color: #059669;
}

#forgot-message p.error {
  background: #fef2f2;
  color: #dc2626;
}