/*stilos dos campos */

.div-campo {
  height: 40px;
  margin-top: 2.0rem;
  width: 100%;
}

.div-campo label {
  position: relative;
  font-size: 20px;
  top: calc(-50% - 12px);
  margin-left: 5px;  
}

.campo {
  border: 2px solid rgb(134, 132, 132);
  outline: none;
  padding-left: 20px;
  font-size: 20px;
  border-radius: 5px;  
  width: calc(100%);
  height: calc(100%);
}

.campo:focus~label {
  font-size: large;
  position: relative;
  top: -150%;  
  padding: 0px 10px;
}

.campo:focus , .campo:hover, input:focus , input:hover, select:hover, select:focus{
  /*border: 1px solid rgb(206, 30, 30);*/
  border: none;
  box-shadow: 0px 0px 5px red;  
  outline: none;
}

.div-campo .with-value {
  top: -150%;
}

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

.content-modal{
  overflow-y: scroll;
  width: 60%;
  height: 95%;
  margin: auto;
  position: fixed;
  padding: 10px;
  left: 0;
  right: 0;
  top: 50%;
  outline: none;
  transform: translateY(-50%);
  border-radius: 5px;
  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{
  display: flex;
  flex-direction: column;
  padding: 0px;
}

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

select{
  cursor: pointer;
}