body {
  background-image: url("images/002a38f12999f35cd245933298f01ad7.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  background-color: var(--background);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

form {
  background-color: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 20px;
  border-radius: 8px;
  width: 300px;
  margin: auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

label {
  display: block;
  margin-bottom: 8px;
}

input {
  margin-bottom: 15px;
  padding: 10px;
  width: 90%;
  border-radius: 4px;
  border: 1px solid #ccc;
}

button {
  margin-top: 10px;
  color: white;
  background-color: #007bff;
  border: none;
  padding: 10px;
  border-radius: 30px;
  cursor: pointer;
  width: 100%;
  transition: background-color 0.3s, box-shadow 0.3s;
}

button:hover {
  background-color: #0056b3;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

h1 {
  text-align: center;
}

@media screen and (max-width: 600px) {
  form {
    width: 90%;
    padding: 15px;
  }

  input,
  button {
    font-size: 14px;
  }

  h1 {
    font-size: 20px;
  }
}
