* {
  font-family: 'Righteous', cursive;
  margin: 0px;
  padding: 0px;
  text-decoration: none;
  box-sizing: border-box;
}

.red {
  border: solid 1px red;
}

.none {
  display: none
}

.m10 {
  margin: 10px
}

.divisor {
  margin: 20px 0px;
}

.page {
  display: flex;
  flex-wrap: wrap;
  min-height: 100vh;
  width: 100%;
  background: url('../img/xangai2.jpg');
  background-size: 100%;
  background-repeat: no-repeat;
  background-position: top;
}

.page_section {
  width: 50%;
  height: 50vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

#s1 {
  background: #ffffff;
  color: #333333;
  display: flex;
  flex-direction: column;
}

#s2 {
  background: #f5f4f0;
  color: #333333;
  display: flex;
  flex-direction: column;
}

#s3 {
  background: #f5f4f0;
  color: #333333;
  display: flex;
  flex-direction: column;
}

#s4, #s4 a{
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.logo span {
  display: flex;
  letter-spacing: 0.31em;
  transform: translateY(-10px);  
  color: #ea9b3e;
}

.logo h1 {
  font-family: 'Fugaz One', cursive;
  font-style: italic;
  color: #022455;
}

.form {
  display: flex;
  flex-direction: column;
}

.form form {
  display: flex;
  flex-direction: column;
}

.input_group{
  display: flex;
  flex-direction: column-reverse;
  margin: 10px 0px;
}
.input_group input, .input_group textarea{
  padding: 10px;
  border: solid 1px #d7d7d7;
  font-size: 1.1em;
  font-weight: 100;
}

.input_group input:focus, .input_group textarea:focus{
  outline-color: #ea9b3e;
}

.input_group label{
  color: #444444;
}

.form_submit{
  width: 100%;
  background: #ea9b3e;
  font-size: 1.3em;
  padding: 10px;
  color: #ffffff;
  border-radius: 10px;
  cursor: pointer;  
  border: none;
  box-shadow: 2px 2px 2px rgba(0,0,0,0.4);
  text-shadow: 1px 1px 1px rgba(0,0,0,0.7);
  
}
.form_submit:hover{
  transform: translate(-1px,-1px);
  box-shadow: 3px 3px 2px rgba(0,0,0,0.4);
  
}
.form_submit:active{
  transform: translate(1px,1px);
  box-shadow: 1px 1px 2px rgba(0,0,0,0.4);
  
}

.home{
  
  background: #ea9b3e;
  padding: 15px;
  border-radius: 25px;
  box-shadow: 2px 2px 2px rgba(0,0,0,0.7);
  
}