
body {
  background: #3CA89C;
  font-family: sans-serif;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}
.container {
  background: white;
  padding: 2rem;
  border-radius: 10px;
  box-shadow: 0 8px 16px rgba(0,0,0,0.2);
  text-align: center;
  width: 100%;
  max-width: 400px;
}
.logo {
  height: 60px;
  margin-bottom: 1rem;
}
input, button {
  width: 100%;
  padding: 10px;
  margin: 8px 0;
  border-radius: 6px;
  border: 1px solid #ccc;
}
button {
  background-color: #3CA89C;
  color: white;
  font-weight: bold;
  border: none;
  cursor: pointer;
}
button:hover {
  background-color: #329488;
}
.links a {
  color: #3CA89C;
  text-decoration: none;
}
