/* Basic Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Body styling */
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  background: linear-gradient(135deg, #202020, #303030);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* Container */
.auth-container {
  background-color: rgba(255, 255, 255, 0.05);
  padding: 3rem 4rem;
  border-radius: 1rem;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
}

/* Headings */
.auth-container h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.auth-container p {
  font-size: 1rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

/* Buttons */
.btn {
  display: inline-block;
  text-decoration: none;
  color: white;
  padding: 0.75rem 2rem;
  border-radius: 10px;
  font-weight: 500;
  transition: all 0.25s ease;
  margin: 0 0.5rem;
}

/* Login button */
.btn.login {
  background-color: #007bff;
}

.btn.login:hover {
  background-color: #3399ff;
}

/* Signup button */
.btn.signup {
  background-color: #34a853;
}

.btn.signup:hover {
  background-color: #2d8e46;
}
