* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Montserrat", sans-serif;
  background: #fff;
  height: 100vh;
}

.form-group-1 {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 15px 20px;
}

.form-group-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px 20px;
}

.form-group-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px 20px;
}

label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
  color: #333;
}

input[type="text"] {
  width: 100%;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s ease;
}

input[type="text"]:focus {
  border-color: #999;
}

select {
  width: 100%;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s ease;
  height: 45px;
}

select:focus {
  border-color: #999;
}

input[type="date"] {
  width: 100%;
  font-size: 14px;
  font-family: "Montserrat", sans-serif;
  border: 1px solid #ccc;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.2s ease;
  height: 45px;
}

input[type="date"]:focus {
  border-color: #999;
}

.bloco {
  margin: 5px;
}

p.error-validate {
  color: #dc3232;
  font-size: 1em;
  font-weight: normal;
  display: block;
  font-size: 13px;
  margin-bottom: 2px;
  margin-top: 5px;
}

.btn {
  background-color: #0070bc;
  border-radius: 3px;
  cursor: pointer;
  display: inline-block;
  margin: 0;
  padding: 1.1em 2.5em;
  border: none;
  font-size: 0.8em;
  line-height: 1;
  width: auto;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
}

.btn:hover {
  opacity: 0.8;
}

.d-radio {
  display: flex;
  align-items: center;
  height: 45px;
}

.d-radio span {
  margin-right: 13px;
}

.validate {
  padding: 11px 10px;
}

.d-inherit {
  display: inherit;
}

.badge-success {
  padding: 10px;
  background: #9bd7ff;
  color: #124669;
  border-radius: 3px;
  width: 100%;
  max-width: 300px;
  font-size: 15px;
  text-align: center;
  margin: 5px;
}

.spinner {
  border: 2px solid #f3f3f3;
  border-top: 2px solid #3498db;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  display: inline-block;
  margin-right: 6px;
  vertical-align: middle;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.mb-10 {
  margin-bottom: 80px;
}

#footer.short {
  padding-top: 50px;
  padding-bottom: 50px;
}

#footer {
  background: #0e0e0e;
  border-top: 4px solid #0e0e0e;
  font-size: 0.9em;
  margin-top: 50px;
  padding: 70px 0 0;
  position: relative;
  clear: both;
}

i.fa-solid.fa-envelope {
  color: #777;
}

p {
  color: #777;
  line-height: 24px;
  margin: 0 0 20px;
}

h1 {
  font-size: 2.1em;
  line-height: 44px;
  margin: 0;
}

#footer h4 {
  font-size: 1.8em;
  font-weight: 200;
}

html .heading-primary,
html .lnk-primary,
html .text-color-primary {
  color: #0088cc !important;
}

#footer h5 {
  color: #ccc;
}

h5 {
  font-size: 1em;
  font-weight: 600;
  letter-spacing: normal;
  line-height: 18px;
  margin: 0 0 14px 0;
  text-transform: uppercase;
}

#footer h1,
#footer h2,
#footer h3,
#footer h4,
#footer a {
  color: #fff;
}

#footer .phone {
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  display: block;
  padding-bottom: 15px;
  margin-top: -5px;
}

hr {
  background-image: linear-gradient(to left, transparent, #dbdbdb, transparent);
  border: 0;
  background: #e1e1e1;
}

hr.tall {
  margin: 44px 0;
}

span.token-label {
  border-radius: 5px;
  background: #d5eeff;
  padding: 3px 4px;
  font-weight: 500;
  font-size: 14px;
  font-family: monospace;
  color: black;
}

span.site-label {
  text-decoration: underline;
  color: #0070bc;
  font-weight: 500;
}

@media screen and (max-width: 600px) {
  .container-mobile {
    padding-left: 30px;
    padding-right: 30px;
  }
  img.logo {
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin: 0 auto;
  }
  .text-assistencia {
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 13px !important;
  }
}
