*{
  margin:0;
  padding:0;
  outline:0;
  box-sizing:border-box;
  
}
body{
  background:#312e38;
  -webkit-font-smoothing:antialiased !important;
}
.container{ 
  display:flex;
  align-items: center;
  justify-content: center;
  flex-flow: column nowrap;
  height: 100vh;
  padding: 10px;
  
}
.message{
  font-size:30px;
  display:none;
}

form {
  font-family: Verdana,Tahoma,sans-serif;
  font-size: 20px; 
  max-width: 400px;
  display:flex;
  flex-flow: column nowrap;
  align-items: center;
  justify-content: center;

 }
.logo{
	margin-bottom:20px;
}
h1 {
  margin-bottom: 20px;
  margin-left: 20px;
  color: #66FFFF;
  text-shadow: 5px 5px 5px black;
}

input, textarea {
  width: 100%;
  padding: 10px;
  color: black;
  margin-left: 20px;
  margin-top: 10px;
  margin-bottom: 20px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border: 1px solid;

}

input:hover, textarea:hover, input:focus, textarea:focus {
  border-color: #000066;
  box-shadow: 5px 0px 9px #FFFF00;
  background-color: #66FFFF;
  color: black;
  font-weight: bold;
}

.enviar {
  background-color: #66FFFF;
  height: 40px;
  width:100%;
  font-weight: bold;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border: 1px solid;
  color: black;
}

textarea {
  width: 400px;
  height: 120px;
  line-height: 20px;
  max-width: 400px;
}

form label {
  margin-left: 20px;
  color: #FFFFFF;
  font-weight: bold;
}

.loading{
    margin-top:20px;
}

#loading{
    display:none;
     height:35px;
}



