:root {
  margin: 0;
  padding: 0;
  font-family: Poppins, sans-serif;
}
body::before {
  background-image: url(assets/Pictures/background.webp);
  /* background-repeat: no-repeat; */
  background-size: auto 100lvh;
  background-position: top center;
  position: fixed;
  background-color: black;
  content: " ";
  inset: 0;
  height: 100vh;
  z-index: -1;
}
.book-now {
  img {
    width: 15rem;
    height: 15rem;
    margin-left: calc(50% - 7.5rem);
  }
}
.form-container {
  height: 30rem;
  width: 20rem;
  margin: auto;
  color: white;
  background-color: rgba(170, 164, 173, 0.377);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 8px 32px 0 rgba(245, 245, 245, 0.24);
  border-radius: 12px;
  text-align: center;

  @media (min-width: 760px) {
    width: 30rem;
  }

  form {
    padding: 2rem;
    font-weight: bold;
  }

  input[type="text"] {
    width: 15rem;
    height: 2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: none;
    border-radius: 0.5rem;
    color: white;
    background-color: rgba(98, 33, 131, 0.377);
    box-shadow: 0 8px 32px 0 rgba(245, 245, 245, 0.24);
    font-weight: bold;

    @media (min-width: 760px) {
      width: 25rem;
    }
  }

  input[type="email"] {
    width: 15rem;
    height: 2rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: none;
    border-radius: 0.5rem;
    color: white;
    background-color: rgba(98, 33, 131, 0.377);
    box-shadow: 0 8px 32px 0 rgba(245, 245, 245, 0.24);
    font-weight: bold;

    @media (min-width: 760px) {
      width: 25rem;
    }
  }
  textarea {
    width: 15rem;
    height: 5rem;
    margin-top: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem;
    border: none;
    border-radius: 0.5rem;
    color: white;
    background-color: rgba(98, 33, 131, 0.377);
    box-shadow: 0 8px 32px 0 rgba(245, 245, 245, 0.24);
    font-weight: bold;

    @media (min-width: 760px) {
      width: 25rem;
    }
  }
  button {
    height: 3rem;
    width: 6rem;
    border-radius: 12px;
    border: none;
    background-color: rgba(98, 33, 131, 0.616);
    color: white;
    font-weight: bold;
    box-shadow: 0 8px 32px 0 rgba(245, 245, 245, 0.24);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    &:hover {
      background-color: rgba(98, 33, 131, 0.8);
    }
  }
  a {
    color: white;
    font-size: large;
    text-shadow: 0 0 5px white;
  }
}
