main{
  text-align: center;
  padding: 10px;
  color: white;
}

.form{
  width: 100%;
  height: fit-content;
  text-align: center;
  margin: 10px 0px;
  padding: 10px 0px;
}

.form input,textarea{
  width: 90%;
  padding: 10px;
  border: 1px solid #999;
  border-radius: 5px;
  outline: none;
  box-shadow: 0px 1px 6px 0px #999;
  margin: 10px 0px;
  background-color: rgba(255, 255, 255, .3);
  color: white;
  transition: .1s;
}

textarea{
  resize: none;
  height: 10vh;
  text-align: justify;
  overflow-y: auto;
}

.form input:focus,textarea:focus{
  outline: 3px solid #999;
}

.form .send{
  display: block;
  padding: 10px;
  border: none;
  border-radius: 5px;
  background-color: blue;
  color: white;
  cursor: pointer;
  margin-top: 10px;
  margin-right: 6%;
  box-shadow: 0px 1px 6px 0px #008cff88;
  transition: .1s;
}

.form .send:hover{
  outline: 3px solid #008cff88;
}

.form .send:focus{
  outline-color: rgb(0, 119, 255);
}
