@import url('https://fonts.googleapis.com/css2?family=Ubuntu:ital,wght@0,300;0,400;0,500;0,700;1,300;1,400;1,500;1,700&display=swap');

@font-face{font-family: 'Ubuntu', sans-serif;}


*, *:before, *:after {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}







.field {
  margin: 20px 0;
}

label {font-family: 'Ubuntu', sans-serif;
  display: block;
  margin-top: 5px;
  margin-bottom: 5px;
  color: #543C49;
}

input {
outline:0;
	font-family: 'Ubuntu', sans-serif;
 height:auto;
 font-size:1em;
 color:#543C49;
background-color:transparent;
 margin-top:0,;
 margin-bottom:0;
 width:100%;
  padding: 10px 0 5px 10px;
  border-top:#f7f7f7 solid 2px;
  border-left:#f7f7f7 solid 2px;
  border-right:#f7f7f7 solid 2px;
  border-bottom:#275bb7 solid 2px;
  -webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

input:focus {
	outline:0;
font-family: 'Ubuntu', sans-serif;
 height:auto;
 font-size:1em;
 color:#543C49;
background-color:transparent;
 margin-top:0,;
 margin-bottom:0;
 width:100%;
  padding: 10px 0 5px 10px;
  border-top:#275bb7 solid 2px;
  border-left:#275bb7 solid 2px;
  border-right:#275bb7 solid 2px;
  border-bottom:#275bb7 solid 2px;
  -webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

textarea {outline:0;
  width: 100%;
  height:120px;
  padding: 10px 0 5px 10px;
  border-top:#f7f7f7;
  border-left:#f7f7f7;
  border-right:#f7f7f7;
  border-bottom:#275bb7 solid 2px;
font-family: 'Ubuntu', sans-serif;
 font-size:1em;
 color:#543C49;
 background-color:transparent;
 margin-top:0,;
 margin-bottom:0;
 -webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}

textarea:focus {outline:0;
  width: 100%;
  height:120px;
  padding: 10px 0 5px 10px;
  border-top:#275bb7 solid 2px;
  border-left:#275bb7 solid 2px;
  border-right:#275bb7 solid 2px;
  border-bottom:#275bb7 solid 2px;
font-family: 'Ubuntu', sans-serif;
 font-size:1em;
 color:#000;

 margin-top:0,;
 margin-bottom:0;
 -webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	transition: all 0.5s;
}



button {font-family: 'Ubuntu', sans-serif;
color: #FFF;
padding: 10px 20px;
text-align: left;
 -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
	font-weight: 300;
	font-size: 1em;
	background: #bc1919;
	margin: 20px 0 0 0;
border-radius: 50px;
	border: none;
	
}

button:hover, button:focus {font-family: 'Ubuntu', sans-serif;
color: #FFF;
padding: 10px 20px;
text-align: left;
 -webkit-transition: all 0.4s ease-in-out;
  -moz-transition: all 0.4s ease-in-out;
  -ms-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out;
	background: #275bb7;
	margin: 20px 0 0 0;
border-radius: 50px;
}

button:active {
  opacity: 1;
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.1) inset;
}

.success {font-family: 'Ubuntu', sans-serif;
  padding: 1em;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #468847;
  background-color: #dff0d8;
  border: 1px solid #d6e9c6;
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}

.error {font-family: 'Ubuntu', sans-serif;
  padding: 1em;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  color: #b94a48;
  background-color: #f2dede;
  border: 1px solid rgba(185, 74, 72, 0.3);
  -webkit-border-radius: 4px;
     -moz-border-radius: 4px;
          border-radius: 4px;
}