@charset "utf-8";


form { 
	max-width:520px; 
	margin:0px auto 0px auto; 
}

.text_input {
  color:white;
  font-size: 120%;
  border-radius: 0px;
  line-height: 22px;
  background-color: transparent;
  border:2px solid white;
  transition: all 0.3s;
  padding: 13px;
  margin-bottom: 15px;
  width:100%;
  box-sizing: border-box;
  outline:0;
  font-family: serif;
}

.text_input:focus { 
  border:2px solid #c56eea; 
}

textarea {
  height: 300px;
  line-height: 150%;
  resize:vertical;
  font-family: serif;
}

[type="submit"] {
  width: 100%;
  background:white;
  border-radius:0px;
  border:0;
  cursor:pointer;
  color:#4d0468;
  font-size:200%;
  padding-top:10px;
  padding-bottom:10px;
  transition: all 0.3s;
  margin-top:-4px;
  font-weight:700;
  background: linear-gradient(90deg, rgba(197,110,234,1) 0%, rgba(240,212,255,1) 50%, rgba(218,173,242,1) 100%);
  background-size: 200% 100%;
  border: none;
  font-family: serif;
}

[type="submit"]:hover { 
  letter-spacing: 0.15em;
  background-position: 100% 0;
}



