/* Reuse your site styles */
main {
  max-width: 800px;
  margin: 40px auto;
  padding: 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  color: #5a4631;
  font-family: 'Quicksand', sans-serif;
}

h1 {
  text-align: center;
  font-size: 2.5rem;
  color: #7a5e3a;
  margin-bottom: 30px;
}

form {
  display: grid;
  gap: 20px;
}

label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #6b5841;
}

input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 8px 12px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
  color: #5a4631;
  box-sizing: border-box;
  transition: border-color 0.3s ease;
}

input[type="email"]:focus,
input[type="password"]:focus {
  border-color: #7a5e3a;
  outline: none;
}

button[type="submit"] {
  background-color: #a8997e;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  width: 150px;
  justify-self: center;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(168,153,126,0.7);
  margin: 0 auto;
  display: block;
}

button[type="submit"]:hover {
  background-color: #7a674a;
}

.signup-btn {
  background-color: #7a5e3a;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 40px;
  font-weight: 700;
  font-size: 1.2rem;
  cursor: pointer;
  width: 150px;
  justify-self: center;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 10px rgba(122,94,58,0.7);
  margin: 10px auto 0 auto;
  display: block;
}

.signup-btn:hover {
  background-color: #5a452b;
}
