body {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 10vh 20px;
}

#slidingDiv {
  position: relative;
  align-self: center;
  height: 100%;
}

.email-signup {
  font-family: "Quicksand", sans-serif;
  /*max-width: 1000px;*/
  background-color: rgba(76,76,76,0.68);
  padding: 30px;
  border-width: 2px;
  border-radius: 8px;
  border-color: rgb(0, 0, 0);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}

.email-signup form {
  display: flex;
  flex-direction: column;
  width: 40vw;
}

@media screen and (max-width: 600px) {
  .email-signup form {
    width: 80vw;
  }
}

label {
  margin-bottom: 8px;
  font-weight: bold;
  color: var(--bs-light);
  font-family: 'Expletus Sans', sans-serif;
}

input {
  padding: 10px;
  margin-bottom: 15px;
  border: 0px solid #ffffff;
  border-radius: 5px;
  font-size: 1rem;
  padding: 15px;
}

input[type="email"], input[type="text"], input[type="tel"] {
  background-color: transparent;
  border: 2px solid var(--bs-border-color);
  color: #ffffff;
  transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

input:focus {
  background-color: whitesmoke;
  border: 2px solid #ffffff;
  color: #000000;
  transform: scale(1.05);
  transition: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.email-signup button {
  background-color: #ffffff;
  color: #ffffff;
  border: 0px solid #000000;
  cursor: pointer;
  margin-top: 20px;
  font-weight: 600;
  font-size: 1rem;
  padding: 15px 20px 15px 20px;
  width: 50%;
  align-self: center;
}

.btn-grad {
  background-image: linear-gradient(to right, #232526 0%, #414345 51%, #232526 100%);
  margin: 10px;
  padding: 15px 45px;
  text-align: center;
  text-transform: uppercase;
  transition: 0.5s;
  background-size: 200% auto;
  color: white;
  /*box-shadow: 0 0 20px #999999;*/
  border-radius: 10px;
  display: block;
  background-position: left center;
}

.btn-grad:hover {
  background-position: right center;
  color: #fff;
  text-decoration: none;
  transition: 0.5s ease-in-out;
}

