body,
html {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen,
    BMI Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  /* background-color: black; */
}

.background-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url("wallpapers/first.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.form-container {
  position: relative;
  height: 550px;
  width: 50%;
  max-width: 400px;
  min-width: 300px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* For Safari support */
  background-color: rgba(255, 255, 255, 0.1); /* Change this line */
  z-index: 1;
  text-align: center;
  padding: 20px;
  border-radius: 40px;
  color: white;
  box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
  border: 1px solid rgba(225, 225, 225, 0.18);
}
.form-container h1 {
  size: 20px;
}
form input {
  height: 40px;
  width: 90%;
  border-radius: 10px;
  border: 1px solid rgba(225, 225, 225, 0.18);
  margin: 2px;
  font-size: 20px;
  text-align: center;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* For Safari support */
  background-color: rgba(255, 255, 255, 0.2); /* Change this line */
}
form input:focus {
  outline: rgba(255, 255, 255, 0.4) solid 1px; /* Change this line */
}

#submit {
  color: rgb(0, 0, 0);
  margin-top: 50px;
  height: 40px;
  width: 70%;
  border-radius: 10px;
  border: none;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px); /* For Safari support */
  background-color: rgba(255, 255, 255, 0.6);
}
#results {
  /* display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center; */
  font-size: 15px;
  margin-bottom: 20px;
}
#changeBackground {
  position: absolute;
  top: 20px;
  left: 20px;
  background: #833ab4;
  border-radius: 50%;
  background: linear-gradient(
    20deg,
    rgba(131, 58, 180, 1) 0%,
    rgba(253, 29, 29, 1) 50%,
    rgba(252, 176, 69, 1) 100%
  );
  height: 30px;
  width: 30px;
}
