body {
  background: linear-gradient(135deg, #2c5aa0 0%, #1e3a72 100%);
  color: #fff;
  font-family: Arial, sans-serif;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.login-container {
  background: rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.18);
  padding: 40px 32px 32px 32px;
  max-width: 350px;
  width: 100%;
  text-align: center;
  backdrop-filter: blur(8px);
}

.login-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 18px;
  color: #ffd700;
  letter-spacing: 1px;
}

.login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.login-form input {
  padding: 12px 14px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  background: #f8fafc;
  color: #1e3a72;
  outline: none;
  transition: box-shadow 0.2s;
}

.login-form input:focus {
  box-shadow: 0 0 0 2px #ffd700;
}

.login-btn {
  background: linear-gradient(45deg, #ffd700, #ffed4e);
  color: #1e3a72;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  padding: 12px 0;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 8px;
}

.login-btn:hover {
  background: linear-gradient(45deg, #ffed4e, #ffd700);
  transform: translateY(-2px) scale(1.03);
}

.login-error {
  color: #ff4d4f;
  margin-top: 10px;
  font-size: 1rem;
  min-height: 24px;
}

    .toggle-form-link {
      text-align: center;
      margin-top: 15px;
      font-size: 0.9em;
      color: #f2eeee;
    }
    
    .toggle-form-link a {
      color: #f2f3f5;
      text-decoration: none;
      cursor: pointer;
    }
    
    .toggle-form-link a:hover {
      text-decoration: underline;
    }
    
    .form-container {
      display: none;
    }
    
    .form-container.active {
      display: block;
    }
    
    .success-message {
      color: #28a745;
      text-align: center;
      margin-top: 10px;
      font-size: 0.9em;
    }

    .password-requirements {
      font-size: 0.85em;
      color: #666;
      margin-top: 5px;
      padding: 8px;
      background: #f8f9fa;
      border-radius: 4px;
    }