@charset "utf-8";
/* CSS Document */

.tudo {
	background: #fff;
	border: 1px solid #e1e1e1;
	margin-top: 20px;
	border-radius: 8px;
	margin-bottom: 40px;

}

.conteudo {
	min-height: 45em;
	padding: 20px;
}




fieldset {

	border: 1px solid  #B7D9A7 ;
	border: 1px solid  #d1d1d1 ;
  margin: 0px 0px 40px 0px;
  padding: 20px;
  -moz-border-radius: 6px;
  -webkit-border-radius: 6px;
  -khtml-border-radius: 6px;
  border-radius: 6px;
  background: #393737;
  background: #FCFCFC;
  background: #b3b3b3;
  background: #FCFCFC;
  color: #89B978;
  color: #000;
    
}

legend{
	display:block;
	position:relative;
	top:00px;
	border:none;
	font-size:14px;
	padding:10px 10px 10px 10px;
	color:#fff;
	background-color:#636363;
	border-radius: 8px;

	
}

.formulario {
	font-size: 2em;
}

.formulario p{
	font-size: 1em;
}



@media(max-width:575px){
  form input[type="text"],
	form input[type="email"],
	input[type="password"],
	form input[type="Date"],

	form select,
	form textarea {
		width: 85%;
	}
}

@media(min-width:576px){
  form input[type="text"],
	form input[type="email"],
	input[type="password"],
	form input[type="Date"],

	form select,
	form textarea {
		width: 100%;
	}
}






form input[type="text"],
	form input[type="email"],
	input[type="password"],
	form input[type="Date"],

	form select,
	form textarea {
		-moz-transition: background-color 0.25s ease-in-out;
		-webkit-transition: background-color 0.25s ease-in-out;
		-ms-transition: background-color 0.25s ease-in-out;
		transition: background-color 0.25s ease-in-out;
		-webkit-appearance: none;
		display: block;
		border: 0;
		background:#f7f7f7;
		box-shadow: inset 2px 2px 20px 0px rgba(0, 0, 0, 0.1);
		border-radius: 4px;
		line-height: 1.25em;
		padding: 0.75em 1em 0.75em 1em;
		margin-bottom: 10px;
	}

		form input[type="text"]:focus,
		form input[type="email"]:focus,
		input[type="password"]:focus,
		form select:focus,
		form textarea:focus {
			background:#C7E3E6;
			color: #3B3B3B;
		}

	form textarea {
		min-height: 11em;
	}


.enviar {
	
}

.enviar button{
	display: block;
	background:#6fb35a;
	padding: 1em 2em 1em 2em;
	color: #fff;
	text-align: center;
	
	-moz-transition: background-color 0.25s ease-in-out;
	-webkit-transition: background-color 0.25s ease-in-out;
	-ms-transition: background-color 0.25s ease-in-out;
	transition: background-color 0.25s ease-in-out;
	-webkit-appearance: none;
	
	border-radius: 8px;

}

.enviar button:hover{
	background:#1d9d74;
}



/**
******************************
*******************************
css do campo file imput
******************************
*******************************
*/

.custom-file-input {
    display: inline-block;
    position: relative;
    color: #533e00;
  }
  .custom-file-input input {
    visibility: hidden;
    width: 150px;
  }
  .custom-file-input:before {
    content: 'Choose File';
    display: block;
    background: -webkit-linear-gradient( -180deg, #ffdc73, #febf01);
    background: -o-linear-gradient( -180deg, #ffdc73, #febf01);
    background: -moz-linear-gradient( -180deg, #ffdc73, #febf01);
    background: linear-gradient( -180deg, #ffdc73, #febf01);
    border: 3px solid #dca602;
    border-radius: 10px;
    padding: 5px 0px;
    outline: none;
    white-space: nowrap;
    cursor: pointer;
    text-shadow: 1px 1px rgba(255,255,255,0.7);
    font-weight: bold;
    text-align: center;
    font-size: 10pt;
    position: absolute;
    left: 0;
    right: 0;
  }
  .custom-file-input:hover:before {
    border-color: #febf01;
  }
    .custom-file-input:active:before {
    background: #febf01;
  }
  .file-blue:before {
    content: 'Foto de Rosto';
    abackground: -webkit-linear-gradient( -180deg, #99dff5, #02b0e6);
    abackground: -o-linear-gradient( -180deg, #99dff5, #02b0e6);
    abackground: -moz-linear-gradient( -180deg, #99dff5, #02b0e6);
    background: linear-gradient( -180deg, #C8C4C4, #8B8B8B);
    border-color: #e1e1e1;
    color: #FFF;
    text-shadow: 1px 1px rgba(000,000,000,0.5);
  }
  .file-blue:hover:before {
    border-color: #02b0e6;
  }
  .file-blue:active:before {
    background: #02b0e6;
  }

  .file-blue1:before {
    content: 'Foto de Corpo';
  }








/**
******************************
*******************************
css do checkbox
******************************
*******************************
*/
.control-group {
  display: inline-block;
  vertical-align: top;
  background: #fff;
  text-align: left;
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
  padding: 30px;
  width: 200px;
  height: 210px;
  margin: 10px;
}
.control {
  display: inline;
  position: relative;
  padding-left: 30px;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 18px;
}
.control input {
  position: absolute;
  z-index: -1;
  opacity: 0;
}
.control__indicator {
  position: absolute;
  top: 2px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #e6e6e6;
}
.control--radio .control__indicator {
  border-radius: 50%;
}
.control:hover input ~ .control__indicator,
.control input:focus ~ .control__indicator {
  background: #ccc;
}
.control input:checked ~ .control__indicator {
  background: #2aa1c0;
}
.control:hover input:not([disabled]):checked ~ .control__indicator,
.control input:checked:focus ~ .control__indicator {
  background: #0e647d;
}
.control input:disabled ~ .control__indicator {
  background: #e6e6e6;
  opacity: 0.6;
  pointer-events: none;
}
.control__indicator:after {
  content: '';
  position: absolute;
  display: none;
}
.control input:checked ~ .control__indicator:after {
  display: block;
}
.control--checkbox .control__indicator:after {
  left: 8px;
  top: 4px;
  width: 3px;
  height: 8px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);

}
.control--checkbox input:disabled ~ .control__indicator:after {
  border-color: #7b7b7b;
}
.control--radio .control__indicator:after {
  left: 7px;
  top: 7px;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #fff;
}
.control--radio input:disabled ~ .control__indicator:after {
  background: #7b7b7b;
}
.select {
  position: relative;
  display: inline-block;
  margin-bottom: 15px;
  width: 100%;
}
.select select {
  display: inline-block;
  width: 100%;
  cursor: pointer;
  padding: 10px 15px;
  outline: 0;
  border: 0;
  border-radius: 0;
  background: #e6e6e6;
  color: #7b7b7b;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

}
.select select::-ms-expand {
  display: none;
}
.select select:hover,
.select select:focus {
  color: #000;
  background: #ccc;
}
.select select:disabled {
  opacity: 0.5;
  pointer-events: none;
}
.select__arrow {
  position: absolute;
  top: 16px;
  right: 15px;
  width: 0;
  height: 0;
  pointer-events: none;
  border-style: solid;
  border-width: 8px 5px 0 5px;
  border-color: #7b7b7b transparent transparent transparent;
}
.select select:hover ~ .select__arrow,
.select select:focus ~ .select__arrow {
  border-top-color: #000;
}
.select select:disabled ~ .select__arrow {
  border-top-color: #ccc;
}

.espaco {
	padding-right: 30px;
}

.sec-i{
  max-width: 1000px;
  margin: auto;
  text-align: center;
  padding-top: 20px;
}
.sec-i p{
  line-height: 32px!important;
}
.tit-i{
  font-size: 24px;
  font-weight: 600;
}

.msgfrmi{
  padding-left: 50px;
  padding-top: 20px;

}
.msgfrmi p {
  text-transform: uppercase;
  font-size: 12px;
  line-height: 18px;

}