.formRegister {
  display: flex;
  margin-top: 1.875rem;
  flex-direction: column;
}

.container-input-label {
  display: flex;
  margin-bottom: 0.938rem;
  justify-content: space-between;
}

.labelRegister {
  margin-top: 0.75rem;
  margin-bottom: 1.25rem;
}

.inputRegister {
  display: flex;
  margin-right: 10.625rem;
  order: 1;
  width: 15.625rem;
  height: 2.188rem;
  padding: 0.5rem;
  margin-top: 0.313rem;
  border: 0.063rem solid var(--cinza-claro);
  border-radius: 0.625rem;
}

span {
  color: var(--vermelho);
}

.radioGroupRegister {
  display: flex;
  flex-direction: row;
  margin-bottom: 1.875rem;
}

.labelRadioRegister {
  margin-right: 1.875rem;
}

.inputRadio {
  margin-right: 0.313rem;
  accent-color: var(--azul);
  cursor: pointer;
}

.containerJustification {
  display: flex;
  margin-bottom: 0.938rem;
  font-size: 1.063rem;
  flex-direction: row;
}

.justificationLabel {
  margin-right: 1.25rem;
}

.errorMessage{
  margin-bottom: 1rem;
  height:1rem;
}

#justification {
  display: flex;
  border: 0.063rem solid var(--cinza-claro);
  border-radius: 0.625rem;
  width: 20rem;
  height: 5rem;
  font-size: 1.063rem;
  font-style: none;
  resize: none;
  padding: 12px 16px;
}

@media (max-width: 767px) {
  .formRegister {
    margin-top: 1rem;
    flex-direction: column;
  }

  .container-input-label {
    flex-direction: column;
    align-items: flex-start;
  }

  .labelRegister {
    margin-bottom: 0.5rem;
  }

  .inputRegister {
    width: 100%;
    margin-right: 0;
    margin-top: 0.313rem;
  }

  .radioGroupRegister {
    flex-direction: column;
    margin-bottom: 1.25rem;
  }

  .labelRadioRegister {
    margin-right: 0;
    margin-bottom: 0.5rem;
  }

  .containerJustification {
    flex-direction: column;
    font-size: 1rem;
  }

  #justification {
    width: 100%;
    height: 6rem;
  }

  .justificationLabel {
    margin-bottom: 1rem;
  }

  .formulario_cards {
    width: 90%;
    height: auto;
    padding: 2rem;
  }
}

