.card {
  background-color: #fff;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.116);
  border-radius: 10px;
  border: none;
}

.inner-title {
  text-transform: uppercase;
  color: #FBF166;
  font-weight: 800;
  font-size: 50px;
  text-align: center;
  font-style: italic;
}

@media screen and (max-width: 992px) {
  .inner-title {
    font-size: 40px;
  }
}

.sub-title {
  color: #FBF166;
  font-weight: 700;
  font-size: 25px;
  margin-bottom: 8px;
}

@media screen and (max-width: 576px) {
  .sub-title {
    font-size: 19px;
  }
}

.inner-desc {
  text-align: center;
  line-height: 1.5;
}

.sub-desc {
  max-width: 190px;
  line-height: 1.8;
}

@media screen and (max-width: 992px) {
  .sub-desc {
    margin: 0 auto;
    max-width: 230px;
  }
}

@media screen and (max-width: 576px) {
  .sub-desc {
    font-size: 13px;
    line-height: 1.6;
  }
}

@media screen and (min-width: 1200px) {
  .container.form-container {
    max-width: 900px !important;
  }
}

.form-ico {
  height: 77px;
  width: 93px;
  object-fit: contain;
  object-position: center center;
}

@media screen and (max-width: 576px) {
  .form-ico {
    height: 66px;
  }
}

a:visited, a:link, a:hover, a:active {
  text-decoration: none;
}

a {
  text-decoration: underline;
}

ul {
  margin: 0;
  padding: 0;
  text-decoration: none;
  font-weight: lighter;
}

ul li {
  display: block;
  padding: 2px 0;
}

button, a[role="button"] {
  cursor: pointer !important;
}

b {
  font-weight: bold;
}

button:focus {
  outline: none;
}

u {
  text-decoration: underline;
}

.font-weight-medium {
  font-weight: 500 !important;
}

.form-control {
  width: 100%;
  padding: 0 0 15px 0;
  border-radius: 0;
  background: none;
  border: none;
  border-bottom: 1px solid #fff;
  color: #fff !important;
  font-size: 18px;
  font-weight: 300;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

@media screen and (max-width: 992px) {
  .form-control {
    font-size: 16px;
    padding-bottom: 6px;
  }
}

.form-control:focus {
  box-shadow: none;
  outline: none;
  background: none;
  border-color: #fff;
}

.form-control:disabled {
  background: none;
}

.form-control::placeholder {
  color: #fff;
}

select.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  text-indent: 1px;
  text-overflow: '';
}

select.form-control::-ms-expand {
  display: none;
}

select.form-control option {
  color: #3B2462 !important;
  padding: 30px 15px;
}

select.form-control option:disabled {
  background-color: lightgray;
}

label.error {
  display: block !important;
  color: #FBF166 !important;
  opacity: .8 !important;
  font-size: 13px !important;
  font-weight: 300;
  padding-top: 5px;
  order: 5;
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}

@media screen and (max-width: 992px) {
  .form-group {
    margin-bottom: 21px;
  }
}

.btn-main {
  background-color: #FBF166;
  color: #472D72;
  border: none;
  padding: 26px 36px;
  font-size: 20px;
  font-weight: 700;
  border-radius: 6px;
  transition: all 0.4s;
}

@media screen and (max-width: 992px) {
  .btn-main {
    font-size: 17px;
    padding: 20px 30px;
  }
}

.btn-main:hover {
  background-color: #f5e506;
  transform: scale(1.04);
}

.inscricao__close {
  position: absolute;
  top: 8px;
  right: 0;
  background-color: #2F1A52;
  color: #FBF166;
  font-weight: bold;
  text-transform: lowercase;
  border-radius: 6px;
  border: none;
  font-size: 16px;
  padding: 7px 30px;
  transition: all 0.4s;
}

@media screen and (max-width: 768px) {
  .inscricao__close {
    right: 12px;
  }
}

.inscricao__close:hover {
  background-color: #281646;
  transform: scale(1.05);
}

/* Customize the label (the custom-checkbox) */
.custom-checkbox {
  display: block;
  position: relative;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.custom-checkbox .mask {
  display: flex;
  align-items: center;
  font-size: 12px;
  padding-left: 25px;
}

.custom-checkbox .mask:hover .checkmark {
  transition: all 0.4s;
  background-color: #fff;
}

/* Hide the browser's default checkbox */
.custom-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 2px;
  left: 0;
  height: 15px;
  width: 15px;
  background-color: transparent;
  border: 1px solid #fff;
}

@media screen and (max-width: 992px) {
  .checkmark {
    top: 5px;
  }
}

/* On mouse-over, add a grey background color */
.custom-checkbox:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.custom-checkbox input:checked ~ .checkmark {
  background-color: #fff;
}

.inputfile {
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  overflow: hidden;
  position: absolute;
  z-index: -1;
}

.inputfile + div label {
  cursor: pointer;
  /* "hand" cursor */
  transition: transform 0.5s;
}

.inputfile + div label {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background-color: #3B2462;
  padding: 19px 15px;
  font-size: 18px;
  border-radius: 1px;
}

@media screen and (max-width: 992px) {
  .inputfile + div label {
    flex-direction: column;
    font-size: 16px;
  }
}

.inputfile + div label:after {
  content: 'Buscar';
  display: block;
  background-color: #C4C4C4;
  border-radius: 3px;
  color: #545454;
  font-weight: 400;
  padding: 5px 34px;
  transition: all 0.4s;
}

@media screen and (max-width: 992px) {
  .inputfile + div label:after {
    margin-top: 13px;
  }
}

.inputfile:focus + div label {
  outline: none;
  box-shadow: none;
}

.inputfile + div label * {
  pointer-events: none;
}

.inputfile:focus + div label,
.inputfile + div label:hover {
  transform: scale(1.01);
}

.inputfile:focus + div label:after,
.inputfile + div label:hover:after {
  background-color: #FBF166;
  color: black;
  transform: scale(1.05);
}

body.inscricao {
  position: relative;
  margin: 0;
  background-color: #472D72;
  font-family: 'Roboto', sans-serif;
  overflow-x: hidden;
  font-weight: 300;
  font-size: 15px;
  color: #fff;
}

@media screen and (max-width: 768px) {
  body.inscricao {
    font-size: 14px;
  }
}

html {
  overflow-x: hidden;
}

/*# sourceMappingURL=maps/style.css.map */
