@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@100&display=swap");
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
body {
  background-image: url(https://picsum.photos/1200);
  background-size: cover;
  font-family: "Roboto", sans-serif;
  padding: 5% 10%;
  width: 100%;
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  color: rgb(12, 8, 8);
  text-transform: uppercase;
}
#form {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5% 10%;
  background: rgba(226, 228, 230, 0.795);
  box-shadow: 0 8px 32px 0 rgba(47, 47, 47, 0.37);
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
  border-radius: 4px;
  box-shadow: 20px 20px 60px #292929;
}
h1 {
  margin-bottom: 10px;
  color: rgb(12, 10, 10);
}
.contact-label {
  display: none;
}
.contact-input {
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  padding: 5% 10%;
  background: rgba(0, 0, 0, 0.75);
  box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0);
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
  border-radius: 4px;
  border: none;
  color: rgb(226, 216, 216);
  outline: none;
}
.contact-input ::placeholder {
  text-transform: uppercase;
}
button {
  width: 100%;
  transition-duration: 0.4s;
  background: rgba(238, 236, 236, 0.75);
  backdrop-filter: blur(2.5px);
  -webkit-backdrop-filter: blur(2.5px);
  border-radius: 4px;
  border: none;
  color: whitesmoke;
}
button:hover {
  background-color: teal;
  color: whitesmoke;
}
