.form {
  display: flex;
  flex-direction: column;
  font-family: Poppins;
  gap: 10px;
}

.label {
    font-size: 14px;
    align-self: flex-start;
}
.radio-group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  gap: 10px;
}


[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

[type="radio"] + img {
  cursor: pointer;
  width: 48px;
  height: 48px;
  margin-bottom: -5px;
  align-self: center;
}

.img-tipo-veiculo {
  max-width: 48px;
  max-height: 48px;
}

[type="radio"]:checked + img {
  outline: 2px solid #0ea8de;
  border-radius: 6px;
}
[type="radio"]:checked  .figcaption {
  color:#0ea8de !important;
}

.figcaption {
  font-size: 10px;
  color: #434343;
}

.input {
  font-size: 14px !important;
  font-family: Poppins;
  padding: 5px 10px !important;
  outline: none  !important;
  background: #ffffff  !important;
  color: #000000  !important;
  border: 1px solid #c3c3c3  !important;
  border-radius: 6px !important;
  transition: 0.3s ease !important;
  height: 23.098px;
}

.input:focus {
  background: #ffffff !important;
  border: 1px solid #0ea8de !important;
  border-radius: 5px !important;
}

.input::placeholder {
  color: #8a8a8a !important;
}

.types {
  display: inline-grid;
  width: 100%;
  gap: 10px;
}


.types select {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  font-size: 12px;
  padding: 5px 10px 5px 10px;
  background-color: #ffffff;
  border: 1px solid #c3c3c3;
  border-radius: 6px;
  color: #000000;
  cursor: pointer;
  outline: none;
}

.types select:focus {
  background: #ffffff;
  border: 1px solid #0ea8de;
  border-radius: 6px;
}

.types select::after {
  content: "";
  position: absolute;
  pointer-events: none;
  top: 50%;
  right: 10px;
  width: 12px;
  height: 12px;
  background-color: #fff;
  
}

[type="submit"] {
  font-family: Poppins;
  font-weight: bold;
  color: #ffffff !important;
  width: 100%;
  font-size: 16px;
  padding: 10px 25px;
  border-radius: 10px;
  background: #0ea8de;
  border: none;
}

[type="submit"]:hover {
  color: #fff !important;
  background: #354786;
  transition: 500ms;
  cursor: pointer;
}

[type="submit"]:disabled {
  color: #ffffff !important;
  background: #88bacb;
  cursor: default;
}

/*sgb app*/
.container {
  padding: 10px 20px;
  margin-top: -15px;
}

.modelo-api-placa {
  height: 38px;
}
  
.modelo-api-placa select {
    font-family: Poppins;
    color: #c9c8c8;
    width: 100%;
}

.modelo-api-placa select:focus {
  color: #0108e7;
}

.label-tveiculo {
  color: #434343;
}

.chosen-container {
  width: 100% !important;
}

.chosen-container-single .chosen-single {
  line-height: 34px !important;
  height: 35px !important;
}

#btnAddCli {
  background: none !important;
  border: none !important;
  margin-top: -20px !important;
}

.select-disabled-cot {
  pointer-events: none;
  touch-action: none;
  opacity: 0.5 !important;
  cursor: default;
}

label.error{
  color: #b94a48 !important;
}

input.error{
  border-color: #b94a48 !important;
}
input.valid{
  border-color: #5bb75b !important;
}

.help-inline {
  color: #b94a48 !important;
}