strong {
  font-weight: 500;
}

.campos {
  margin: 30px 0 25px;
  /* display: grid; */
  grid-gap: 24px;
  gap: 24px;
  display: flex;
  flex-wrap: wrap;
  /* grid-template-areas:
    "nome sobrenome"
    "celular email"
    "empresa cargo"
    "funcionario segmento"; */
}

.campos > div{
  width: 47%;
}

@media (max-width: 991px) {
  .campos > div{
    width: 100%;
  }
}
/* 
@media (max-width: 580px) {
  .campos > div{
    width: 100%;
  }
} */

@media (max-width: 991px) {
  .campos {
    display: flex;
    flex-direction: column;
  }
}

/* @media (max-width: 580px) {
  .campos {
    display: flex;
    flex-direction: column;
  }
} */

.campos div label {
  display: block;
  color: #000;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  /* line-height: 100%; */
  letter-spacing: 0.5px;
  margin-bottom: 7px;
}

.campos div input {
  border: 1px solid #bcbec0;
  padding: 12px 16px;
  border-radius: 8px;
  color: #4a4b4d;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  width: 100%;
}

.campos div select {
  /* appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none; */
  border: 1px solid #bcbec0;
  padding: 12px 12px 12px 16px;
  border-radius: 8px;
  color: #4a4b4d;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  cursor: pointer;
  width: 100%;
}

.emailError {
  display: none;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

.campos .cargo {
  position: relative;
}

.campos .cargo span {
  color: #4500ba;
  position: absolute;
  right: 10px;
  top: 40%;
}

.campos .funcionarios {
  position: relative;
}

.campos .funcionarios span {
  color: #4500ba;
  position: absolute;
  right: 10px;
  top: 40%;
}

.campos .segmento {
  position: relative;
  width: 100%;
}

/* .campos .segmento span {
  color: #4500ba;
  position: absolute;
  right: 10px;
  top: 50%;
} */

.terms {
  font-size: 11px;
}

.especialista {
  letter-spacing: 0.5px;
  background-color: #4500ba;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  border: none;
  box-shadow: none;
  width: 100%;
  padding: 16px;
  border-radius: 12px;
  color: #fff;
}

.emailError {
  display: none;
  font-size: 14px;
  font-weight: 500;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0.5px;
  margin-bottom: 0;
}

.emailErrorInvalid {
  display: block;
}

.error {
  margin-top: 10px;
}
