body, html {
  margin: 0;
  padding: 0;
  font-family: Arial, sans-serif;
  height: 100%;
  background-color: #f4f4f4;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/static/images/test_background.jpeg");
  background-size: cover;
  background-position: center;
  filter: blur(8px);
  z-index: -1;
}

button {
  padding: 10px;
  font-size: 1rem;
  margin: 5px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
  cursor: pointer;
  transition: all 0.3s ease;
}

button:hover {
  background-color: #f6ac37;
  color: white;
}

a {
  color: #214b35;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

input, button {
  padding: 10px;
  font-size: 1rem;
  margin: 5px 0;
  border-radius: 5px;
  border: 1px solid #ccc;
}

p {
  font-size: 1rem;
}
