/*----------------------fontface--------------------------------*/
/* Generated by Font Squirrel (http://www.fontsquirrel.com) on December 6, 2011 07:36:03 AM America/New_York */

@font-face {
  font-family: 'open_sans_bold';
  src: url('/fontface/opensans-bold-webfont.woff') format('woff'),
    url('/fontface/opensans-bold-webfont.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'open_sans_semibold';
  src: url('/fontface/opensans-semibold-webfont.woff') format('woff'),
    url('/fontface/opensans-semibold-webfont.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'open_sans_regular';
  src: url('/fontface/opensans-regular-webfont.woff') format('woff'),
    url('fontface/opensans-regular-webfont.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'open_sans_light';
  src: url('/fontface/opensans-light-webfont.woff') format('woff'),
    url('/fontface/opensans-light-webfont.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
}

/*--------------------------END----------------------------------*/

/*--------------------Variáveis---------------------------------*/

:root {
    --first-color: #f2f2f2;
    --white: #FFFFFF;
}

/*--------------END---------------------------------------------*/

body {    
  padding: 0;
  font-size: 1.1rem;
  font-family: 'open_sans_regular';
  padding: 50px 20px 50px 20px;
}

.container_area_center {
  max-width: 600px;  
  margin: 0 auto;
   
}

.container_form {
  background: var(--first-color);
  padding: 30px;
  margin: 0 20px 0 20px; 
}


.area_input span::after {
  content: "€";
  position: relative;
  padding: 15px;
  top: -39px;
  left: 1px;
  background: #e0e0e0;
}

.area_input {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
}

.area_input, label {
  margin-bottom: 10px;
  font-weight: 600;
}

.area_input input[type=text], .area_input input[type=number] {
  height: 55px;
  min-width: 500px;
  padding-right: 10px;
  padding-left: 50px;
  font-size: 1rem;
}
.area_input input:last-child{
  padding-left: 10px;
}

textarea:focus, input:focus, select:focus {
  box-shadow: 0 0 0 0;
  outline: 0;
}

.check_input{
  margin-bottom: 15px;
}
.defaultCheckbox{
  width: 20px;
  height: 20px;
  margin: 0;
  margin-right: 8px;
}
/*----------------RESPONSIVIDADE------------------------------*/

@media only screen and (max-width: 820px) {
  
  .container_area_center {
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: center;
  }
  
  .container_form {
    height: auto;
    width: 80%;       
  }

  .area_input input[type=text], .area_input input[type=number] {
    height: 55px;
    min-width: 150px;    
  }

}

/*--------------------END------------------------------*/
