body {
  font-family: "Poppins", sans-serif;
  background-color: #f5f5f5;
  margin: 0;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.auth-card {
  background: #ffffff;
  padding: 2.5rem 3rem;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(64, 87, 255, 0.12);
  max-width: 420px;
  width: 100%;
}

.auth-card h1 {
  font-family: "Montserrat", sans-serif;
  font-size: 1.8rem;
  color: #392259;
  margin-top: 0;
  margin-bottom: 1.5rem;
  text-align: center;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.auth-form label {
  font-weight: 600;
  color: #392259;
  margin-bottom: 0.35rem;
}

.auth-form input {
  padding: 0.75rem 0.9rem;
  border: 1px solid #e0e0e7;
  border-radius: 10px;
  font-size: 1rem;
  font-family: "Poppins", sans-serif;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.auth-form input:focus {
  border-color: #5b6fff;
  outline: none;
  box-shadow: 0 0 0 4px rgba(91, 111, 255, 0.15);
}

.auth-form button {
  background: linear-gradient(135deg, #5b6fff, #3942c1);
  color: #ffffff;
  padding: 0.95rem 1rem;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  margin-top: 0.5rem;
}

.auth-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 30px rgba(91, 111, 255, 0.25);
}

.auth-footer {
  margin-top: 1.5rem;
  text-align: center;
  color: #6c6f80;
  font-size: 0.95rem;
}

.auth-footer a {
  color: #5b6fff;
  font-weight: 600;
  text-decoration: none;
}

.auth-footer a:hover {
  text-decoration: underline;
}
