/* auth.css */
body {
  font-family: 'Courier New', Courier, monospace; /* Set font to Courier New */
  background-color: #f4f4f4;
  margin: 0;
  padding: 0;
}

.header, .footer {
  background-color: #333;
  color: #fff;
  padding: 20px 0;
}

.container {
  width: 80%;
  margin: 0 auto;
}

.auth-page {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.auth-container {
  background-color: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-width: 400px;
}

h2 {
  text-align: center;
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 15px;
}

label {
  font-weight: bold;
  display: block;
}

input[type="text"], input[type="email"], input[type="password"] {
  width: 100%;
  padding: 10px;
  margin: 5px 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-family: 'Courier New', Courier, monospace; /* Ensure inputs use Courier New */
}

button {
  width: 100%;
  padding: 10px;
  background-color: #4CAF50;
  border: none;
  color: white;
  border-radius: 4px;
  cursor: pointer;
  font-family: 'Courier New', Courier, monospace; /* Ensure button uses Courier New */
}

button:hover {
  background-color: #45a049;
}

.form-footer {
  text-align: center;
  margin-top: 15px;
}

.form-footer a {
  color: #4CAF50;
}

.form-footer a:hover {
  text-decoration: underline;
}
