body {
  margin: 0;
  padding: 0;
  font-family: sans-serif;
}

h2 {
  font-size: 40px;
}

.flash {
  color: red;
}

.welle {
  position: fixed;
  background-position: left;
  background-attachment: fixed;
  background-size: cover;
  height: 100%;
}

.contactsvg {
  position: absolute;
  top: 57%;
  left: 30%;
  width: 45%;
  transform: translate(-50%, -50%);
}

.box {
  position: absolute;
  top: 12%;
  left: 77%;
  transform: translateX(-50%);
  width: 42%;
  padding: 40px;
  background: #fff;
  box-sizing: border-box;
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
  border-radius: 10px;
}

.box h2 {
  margin: 0 0 30px;
  padding: 0;
  color: #000;
  text-align: center;
}

.box .inputBox {
  position: relative;
  margin-top: 15px;
  margin-right: 20px;
}

.box .inputBox input {
  width: 80%;
  max-width: 340px;
  padding: 10px 0;
  font-size: 16px;
  color: #000;
  letter-spacing: 1px;
  margin-bottom: 10px;
  border: none;
  border-bottom: 1px solid #000;
  outline: none;
  background: transparent;
}

.box .inputBox label {
  position: absolute;
  top: 0;
  left: 0;
  letter-spacing: 1px;
  padding: 10px 0;
  font-size: 16px;
  color: #000;
  printer-envents: none;
  transition: .5s;
  cursor: text;
}

.box textarea {
  resize: none;
  width: 100%;
  height: 200px;
  margin-top: 10px;
  font-size: 18px;
}

.box .inputBox input:focus~label,
.box .inputBox input:valid~label {
  top: -13px;
  left: 0;
  color: rgb(108, 100, 255);
  font-size: 12px;
}

.box .inputBox input:focus,
.box .inputBox input:valid {
  border-bottom: 1px solid rgb(108, 100, 255);
}

.box input[type="submit"] {
  background: transparent;
  border: none;
  outline: none;
  color: #fff;
  background: rgb(108, 100, 255);
  font-size: 18px;
  padding: 10px;
  cursor: pointer;
  border-radius: 16px;
  margin-top: 25px;
  width: 100%;
}

@media screen and (max-width: 900px) {
  .box {
    width: 90%;
    left: 50%;
  }
  .contactsvg{
    display: none;
  }
}

@media screen and (max-width: 600px) {
  .welle{
    display: none;
  }
}
