*{
  margin: 0px;
  padding: 0px;
}
body{
  background: url(../img/form.jpg);
  background-position: center;
  background-size: cover;
  height: 100vh;
}
.logo{
  position: relative;
}
.logo img{
  height: 130px;
  padding: 2% 6%;
}
.form{
  width: 100%;
}
.contactus-form{
  width: 75%;
  background: whitesmoke;
  max-width: 700px;
  top: 60%;
  left: 50%;
  transform: translate(-50%,-50%);
  padding: 30px 40px;
  box-sizing: border-box;
  text-align: center;
  border-radius: 20px;
  box-shadow: 0 0 20px black;
  position: absolute;
  font-family: 'Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
}
.none{
  display: none;
}
.contactus-form h1{
  margin: 0px auto 20px;
  font-weight: 200;
  font-size: 35px;
}
.textbox{
  border:1px solid black;
  margin: 8px 0;
  padding: 12px 18px;
  border-radius: 8px;
}
.textbox label{
  display: block;
  text-align: left;
  color: #333;
  text-transform: uppercase;
  font-size: 18px;
  font-weight: 200;
}
.textbox input, .textbox textarea{
  width: 100%;
  border: none;
  background: none;
  outline: none;
  font-size: 18px;
  margin-top: 6px;
}
.btn{
  display: inline-block;
  background: #9b59b6;
  padding: 14px 12px;
  color: white;
  text-transform: uppercase;
  cursor: pointer;
  margin-top: 8px;
  height: 20%;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  cursor: pointer;
  font-size: 20px;
  border-radius: 20px;
  border: 1px solid #9b59b6;
}
.btn:hover{
  border: 2px solid black;
}
@media(max-width: 700px){
  .contactus-form{
    width: 95%;
  }
  .textbox{
    margin: 15px 0;
  }
}
