/* login.css */
.login-container {
  background: url('/images/gim1.png') no-repeat center center fixed;
  background-size: cover;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.login-form {
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  width: 100%;
  max-width: 28rem;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  border: 1px solid rgba(229, 231, 235, 0.8);
}

.nav-gradient {
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  color: white;
  padding: 1.5rem;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
  text-align: center;
}

.login-input {
  width: 100%;
  padding: 1rem;
  border: 2px solid #e9d5ff;
  border-radius: 0.75rem;
  transition: all 0.3s ease;
}

.login-input:focus {
  border-color: #8b5cf6;
  box-shadow: 0 0 0 4px rgba(139, 92, 246, 0.1);
  outline: none;
}

.login-button {
  width: 100%;
  background: linear-gradient(135deg, #8b5cf6 0%, #ec4899 100%);
  color: white;
  padding: 1rem;
  border-radius: 0.75rem;
  font-weight: bold;
  font-size: 1.125rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.login-button:hover {
  opacity: 0.9;
  transform: scale(1.05);
}

.error-message {
  background-color: #fef2f2;
  border: 1px solid #fecaca;
  color: #dc2626;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}