body {
  margin: 0;
  padding: 0;
  background: linear-gradient(135deg, #800000 0%, #c0392b 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-container {
  background: white;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  padding: 3rem;
  width: 100%;
  max-width: 1000px;
  margin: 2rem;
}

.login-header h1 {
  color: #333;
  /* font-size: 1.8rem; */
  font-family: 'Gilroy Extrabold', sans-serif;
  margin: 0 0 0.5rem 0;
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;

}

.login-header p {
  color: #666;
  margin: 0;
  font-size: 0.95rem;
}

.login-form {
  display: flex;
  height: 100%;
  flex-direction: column;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  color: #333;
  font-weight: 600;
  font-size: 0.9rem;
}

.form-group input {
  padding: 0.875rem 1rem;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: all 0.3s ease;
  outline: none;
  font-family: 'Poppins', sans-serif;
}

.form-group input:focus {
  border-color: #e74c3c;
  box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.1);
}

.form-group input::placeholder {
  color: #999;
}

.remember-me {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: -0.5rem 0;
}

.remember-me input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.remember-me label {
  color: #666;
  font-size: 0.9rem;
  cursor: pointer;
  font-weight: 400;
}

.submit-btn {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
  color: white !important;
  border: none !important;
  padding: 1rem !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  margin-top: 0.5rem !important;
  width: 100% !important;
  outline: none !important;
  display: block !important;
  position: relative !important;
  font-family: 'Poppins', sans-serif !important;
  height: 100% !important;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(231, 76, 60, 0.3);
}

.submit-btn:active {
  transform: translateY(0);
}

.error-message {
  background: #fee;
  color: #c33;
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #c33;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}

.back-link {
  text-align: center;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e0e0e0;
}

.back-link a {
  color: #e74c3c;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.back-link a:hover {
  color: #c0392b;
  text-decoration: underline;
}

@media (max-width: 480px) {
  .login-container {
    padding: 2rem 1.5rem;
    margin: 1rem;
  }

  .login-header h1 {
    font-size: 1.5rem;
  }
}