body {
  margin: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: url('bg.jpg') no-repeat center center fixed;
  background-size: cover;
  font-family: sans-serif;

  font-family: 'Poppins', sans-serif;
  font-weight: 300;
  color: #2E372E;
}

.box {
  background: rgba(255, 255, 255, 0.8);

  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  text-align: center;
}

.form-box {
  padding: 32px 24px 36px;
  max-width: 500px;
  margin: 20px;
}

input, button {
  padding: 0.6rem 2rem;
  font-size: 1rem;
  border-radius: 0.5rem;
  border: 1px solid #ccc;
  margin-top: 0.5rem;
}
button {
  background: #1c7d1c;
  color: white;
  cursor: pointer;
  border: none;
}
button:hover {
  background: #218921;
}
