/* geral */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serfi;
  color: #323232;
  border: none;
}

input, label{
  display: inline-block;
  width: 50%;
}

input focus, label focus{
  outline: none;

}

a{
  color:darkcyan;
}

body{
  padding-top:7vh;
  background-color: aqua;
  background-repeat:no-repeat;
  background-size: cover;
  background-position-y: -150;
}


body{
  font-family: Arial, Helvetica, sans-serif;
  background-color: turquoise;

 }
 
button{
  background-color: dodgerblue;
  border: none;
  padding: 15px;
  width: 50%;
  border-radius: 15px;
  color: white;
  font-size: 15px;
}
  
button:hover{
  background-color: deepskyblue;
  cursor: pointer;
}
  

/* from*/
#main-container{
  width:500px;
  margin-left: auto;
  margin-right: auto;
  background-color: #FFF;
  border-radius: 10px;
  padding: 25px;
}

#main-container h1{
  text-align:center;
  margin-bottom:30px;
  font-size: 1.6rem;
}

form{
  display: flex;
  flex-wrap:wrap;
  justify-content: space-between;

}
.full-box{
  flex: 1 1 180%;
  position: relative;
}
.half-box{
  flex:1 1 45%;
  position: relative;
}
.spacing{
  margin-right: 3.5%;
}

label{
  font-weight: bold;
  font-size: .8rem;
}

input{
    border-bottom: 2px solid #323232;
    padding: 10px;
    font-size: .9rem;
    margin-bottom: 40px;
}

input:focus{
    border-color: #1f9d1f;
}
 

input[type="submit"]{
  background-color:#df0295 ;
  color: #FFF;
  border:none;
  border-radius:20px;
  height:40px; 
  cursor: pointer;
}
#agreement{
  margin-right: 45px;
  margin-left: 2px;
  
}

#agreement, agreement-label{
  display: inline-block;
  width: 5%;
}

 /* errro*/
 .error-validation{
   color:brown;
   position: absolute;
   top: 57px;
   font-size: .8rem;
 }

.template{
  display: none;


  