.login-section {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4rem 1rem;
  background: radial-gradient(circle at top left, #041821, #000);
}

.login-container {
  background: rgba(10, 15, 30, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  box-shadow: 0 0 25px rgba(4, 24, 33, 0.9);
  max-width: 400px;
  width: 100%;
  color: #fff;
  animation: fadeIn 1s ease-in-out;
}

.login-container h2 {
  text-align: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  color: var(--primary, #00cba9);
}

.login-form .form-group {
  margin-bottom: 1rem;
}

.login-form label {
  display: block;
  margin-bottom: 0.5rem;
  color: #ccc;
}

.login-form input {
  width: 100%;
  padding: 0.75rem;
  border-radius: 8px;
  border: none;
  background: #0f1f2d;
  color: #fff;
  box-shadow: inset 0 0 5px rgba(0, 203, 169, 0.2);
}

.login-form input:focus {
  outline: none;
  box-shadow: 0 0 10px rgba(0, 203, 169, 0.6);
}

.login-btn {
  width: 100%;
  padding: 0.75rem;
  margin-top: 1rem;
  border: none;
  border-radius: 30px;
  background: var(--primary, #00cba9);
  color: #000;
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 0 15px var(--primary, #00cba9);
  transition: transform 0.3s ease;
}

.login-btn:hover {
  transform: scale(1.03);
}

.forgot-password {
  text-align: center;
  margin-top: 1rem;
  font-size: 0.9rem;
}

.forgot-password a {
  color: var(--primary, #00cba9);
  text-decoration: none;
}

.password-container { position: relative; }
.password-container .toggle-password { position: absolute; right: 10px; top: 50%; cursor: pointer; }

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
