/* Match sign-up page style */
:root {
  --brown: #453030;
  --cream: #fefaf7;
}

body {
  background-color: var(--cream);
  font-family: 'Inter', sans-serif;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

.login-container {
  width: 350px;
  background: white;
  border: 1px solid #ddd;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
}

h1 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 36px;
  margin-bottom: 20px;
  color: var(--brown);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 10px;
}

input {
  width: 100%;
  padding: 10px;
  margin-bottom: 12px;
  border-radius: 6px;
  border: 1px solid #ccc;
  background: #f9f9f9;
  font-size: 15px;
  color: var(--brown);
}

input:focus {
  outline: none;
  border-color: #a68a64;
}

button[type="submit"] {
  background-color: var(--brown);
  color: white;
  font-weight: bold;
  border: none;
  width: 100%;
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s;
  margin-bottom: 10px;
}

button[type="submit"]:hover {
  background-color: #3b2323;
}

.google-btn {
  background-color: #fff;
  border: 1px solid #ccc;
  color: #555;
  padding: 10px;
  width: 100%;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
  margin-bottom: 15px;
}

.google-btn:hover {
  background-color: #f3f3f3;
}

.error {
  margin-top: 12px;
  color: #b20000;
  font-size: 14px;
}