/* Base styles */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #2c3e50, #3498db);
  color: #333;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

/* Home page enhancements */
.container.home p {
  margin-bottom: 25px;
  font-size: 16px;
  color: #555;
}

.button-group {
  display: flex;
  gap: 15px;
  flex-direction: column;
}

.btn {
  display: block;
  text-decoration: none;
  background-color: #2980b9;
  color: white;
  padding: 14px;
  border-radius: 8px;
  font-weight: bold;
  transition: background-color 0.3s;
}

.btn:hover {
  background-color: #1c5980;
}

.btn.secondary {
  background-color: #95a5a6;
}

.btn.secondary:hover {
  background-color: #7f8c8d;
}

/* Form styling shared by login/signup */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.auth-form input {
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
  width: 100%;
  transition: border 0.3s;
}

.auth-form input:focus {
  border: 1px solid #2980b9;
  outline: none;
}

.auth-form button[type="submit"] {
  background-color: #2980b9;
  color: white;
  padding: 14px;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.auth-form button[type="submit"]:hover {
  background-color: #1c5980;
}

.switch-link {
  margin-top: 10px;
  font-size: 16px;
}

.switch-link a {
  color: #2980b9;
  text-decoration: none;
}

.switch-link a:hover {
  text-decoration: underline;
}
body {
  margin: 0;
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(to right, #2c3e50, #3498db);
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.container {
  background-color: white;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 20px;
}

.btn {
  display: block;
  text-decoration: none;
  background-color: #2980b9;
  color: white;
  padding: 14px;
  border-radius: 8px;
  font-weight: bold;
  text-align: center;
}

.btn:hover {
  background-color: #1c5980;
}

.btn.secondary {
  background-color: #95a5a6;
}

.btn.secondary:hover {
  background-color: #7f8c8d;
}
