/* Enhanced Login page styles */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  padding: 0;
}

.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  background: linear-gradient(135deg, #f9fafb 0%, #edf1f7 100%);
  padding: 2rem;
}

.login-card {
  background-color: white;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  padding: 3rem 2.5rem;
  width: 100%;
  max-width: 360px;
}

.logo-container {
  margin-bottom: 2rem;
}

.login-logo {
  height: 70px;
  margin: 0 auto;
}

.login-card h1 {
  margin-bottom: 2rem;
  color: #2d3748;
  font-size: 1.75rem;
  font-weight: 600;
  letter-spacing: -0.5px;
  text-align: center; /* Keep login title centered as requested */
}

.form-group {
  margin-bottom: 1.5rem;
  text-align: left;
}

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #4a5568;
  text-align: left;
}

.form-group input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.2s ease;
  box-sizing: border-box;
  font-family: 'Inter', sans-serif;
}

.form-group input:focus {
  outline: none;
  border-color: #767f5f;
  box-shadow: 0 0 0 3px rgba(118, 127, 95, 0.2);
}

.login-button {
  width: 100%;
  padding: 0.875rem;
  margin-top: 0.5rem;
  background-color: #767f5f;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 2px 4px rgba(118, 127, 95, 0.1);
  font-family: 'Inter', sans-serif;
  letter-spacing: 0.3px;
}

.login-button:hover {
  background-color: #656c51;
  transform: translateY(-1px);
  box-shadow: 0 4px 6px rgba(118, 127, 95, 0.15);
}

.login-button:active {
  transform: translateY(0);
}

.login-button:disabled {
  background-color: #a2a99a;
  cursor: not-allowed;
}

.error-message {
  background-color: #fff5f5;
  color: #c53030;
  padding: 0.875rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  border-left: 4px solid #c53030;
  text-align: left;
}

/* Add subtle animations */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to { opacity: 1; transform: translateY(0); }
}

.login-card {
  animation: fadeIn 0.4s ease-out;
}

/* Add a forgot password link styling */
.forgot-password {
  display: block;
  text-align: right;
  font-size: 0.85rem;
  color: #767f5f;
  margin-top: -0.5rem;
  margin-bottom: 1.5rem;
  text-decoration: none;
  font-weight: 500;
}

.forgot-password:hover {
  text-decoration: underline;
  color: #656c51;
}

/* Add divider styling */
.divider {
  display: flex;
  align-items: center;
  text-align: center;
  margin: 1.5rem 0;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  border-bottom: 1px solid #e2e8f0;
}

.divider span {
  padding: 0 10px;
  color: #a0aec0;
  font-size: 0.85rem;
}