.div-campo{
  	width: 100%;
		display: flex;
		flex-direction: column;
		margin-bottom: 10px;
	}

.div-campo label {	
	font-size: larger;	
	margin-left: 5px;  
}
.campo{		
  outline: none;
  padding: 5px 0px;
  padding-left: 5px;
  font-size: larger;
  border-radius: 3px;		
  border: 2px solid darkgray;
}
.campo:focus, input:focus{  
  border: none;
  box-shadow: 0px 0px 5px red;
  outline: none;
  /*order: 1px solid #007bff;*/
  /*border-left: 8px solid rgb(238,217, 36);*/
}	
.campo:focus ~ small{
  display: initial;
}

.alert{
  color: red;
  font-size: small;
  margin: 0px;
  margin-top:5px;
  margin-left: 5px;
}
.compo:focus ~ .alert{
  display: none;
}

.div-campo small{
  margin-top: 5px;
  margin-left: 5px;
  display: none;
}	

.require{  
  border-left: 6px solid rgb(238,217, 36);
}

.need{
  /*border: 1px solid rgb(206, 30, 30);*/    
  border-left: 6px solid rgb(239, 46, 46);  
}

.pass{
  /*border: 1px solid#28a745;*/
  border-left: 6px solid #28a745;		
  
}

/*stilos dos campos */

/*molde*/
.modal {
  width: 100vw;
  height: 100vh;
  margin: auto;
  padding: 0;
  z-index: 10;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.8);
  border: 0px;
}

.content-modal{
  overflow-y: auto;
  width: 60%;
  height: 95vh;
  margin: auto;
  position: fixed;
  padding: 10px;
  left: 0;
  right: 0;
  top: 50%;
  outline: none;
  transform: translateY(-50%);
  border-radius: 3px;
  box-shadow: 0 0 5px rgb(206, 206, 206);
}
.content-modal > header > h2{
  text-align: center;
}

.close-modal {
  background-color: rgb(206, 30, 30);
  position: absolute;
  top: 3px;
  right: 3px;
  font-size: larger;
}

@media (max-width: 650px) {
  .content-modal {
    width: 97%;
    height: 95%;
  }
}


/* modal mobyle*/
.div-modal-mob{
  padding: 0px;
}

.div-modal-mob button{
  padding: 5px;
  color : white;
  font-weight: bold;
  text-align: start;
  margin-top: 20px;
  width: 90%;
}

.div-modal-mob button i {
  margin-bottom: 5px;
}

select{
  cursor: pointer;
}