input,
textarea,
select {
  position: relative;
  z-index: 3;
  border: none;
  outline: none;
  color: #232323;
  background: #F5F5F5;
  padding: 10px 16px;
  font-size: 15px!important;
  width: 100%;
  margin-top: 4px;
  border-radius: 4px;

}
input.squer{
}
input.squer,
textarea.squer,
select.squer {
  border-radius: 4px;
}
textarea {
  border-radius: 8px;
  height: 148px;
}
ul {
  list-style: none;
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: wrap;
  position: relative;
  padding: 0;
  justify-content: center;
}
ul li {
  position: relative;
}
a {
  color: black;
}
a:hover {
  text-decoration: none;
}
.btn {
  border-radius: 10px!important;
}
.btn-warning {
  background: #FFA715 !important;
  color: white!important;
  padding-top: 10px;
  padding-bottom: 10px;
  width: 100%;
}
.btn-warning:hover {
  color: white!important;
}
.alert {
  border-radius: 10px!important;
  text-align: center;
  border: none!important;
  font-size: 15px;
}
.alert-success {
  background: #D6FFC3;
  color: #54B527;
}
.alert-danger {
  color: #E32929;
  background: #FFB9B963;
}
header {
  margin-top: 15px;
}
header div:nth-child(2) {
  text-align: right!important;
}
header ul {
  justify-content: right;
  margin-top: 15px;
}
header ul li {
  padding-left: 15px;
  padding-right: 15px;
}
.op-5 {
  opacity: 0.5;
}
@media screen and (max-width: 576px) {
  header ul,
  header div {
    text-align: center!important;
    justify-content: center!important;
  }
}
.container > div {
  padding: 20px;
  border-radius: 16px;
  margin-top: 10px;
  background: #0AAEED;
  display: flex;
  min-height: 80vh;
  overflow: hidden;
  position: relative;
}
.container > div #bg-img {
  position: absolute;
  height: 100%;
  left: 0;
  top: 0;
}
.container > div #bg-img img#img-bg {
  height: 100%;
}
.container > div #bg-img .content {
  position: absolute;
  top: 40%;
  left: 25%;
  text-align: center;
}
.container > div #bg-img .content div {
  color: white;
  max-width: 200px;
  font-weight: bold;
  font-size: 22px;
  text-align: center;
}
.container > div #form {
  background: white;
  padding: 20px;
  z-index: 100;
  width: 50%;
  border-radius: 16px;
}
.container > div #form .captcha {
  position: relative;
  z-index: 3;
  outline: none;
  color: #232323;
  background: #F5F5F5;
  padding: 3px 16px;
  font-size: 15px!important;
  text-align: left;
  width: 100%;
  margin-top: 4px;
  border-radius: 4px;
  height: 42.5px;
  border: 1px solid #e1e1e1;
}
.container > div #form .captcha img {
  height: 100%;
}
.container > div #form .captcha #refresh-captcha {
  height: 90%;
  float: right;
  cursor: pointer;
}
@media screen and (max-width: 992px) {
  .container > div #bg-img .content {
    left: 12%!important;
  }
}
@media screen and (max-width: 768px) {
  .container > div #form {
    margin-top: 180px;
    width: 100%;
  }
  .container > div #bg-img {
    height: auto!important;
    width: 100%;
    margin-left: 5%;
    left: 0;
    top: 0;
  }
  .container > div #bg-img img#img-bg {
    height: auto!important;
    width: 100%!important;
  }
  .container > div #bg-img .content {
    position: absolute;
    top: 14%;
    left: calc(50% - 90px) !important;
    text-align: center;
  }
  .container > div #bg-img .content div {
    color: white;
    max-width: 200px;
    font-weight: bold;
    font-size: 16px!important;
    text-align: center;
  }
  .container > div #bg-img .content svg {
    height: 60px;
  }
}
@supports (-webkit-appearance: none) or (-moz-appearance: none) {
  input[type='checkbox'],
  input[type='radio'] {
    --active: #F3DE8D;
    --active-inner: #4A4949;
    --focus: 2px #FFBF00;
    --border: #4A4949;
    --border-hover: #F3DE8D;
    --background: white;
    --disabled: #BCBCBC;
    --disabled-inner: #BCBCBC;
    -webkit-appearance: none;
    -moz-appearance: none;
    height: 21px;
    outline: none;
    display: inline-block;
    vertical-align: top;
    position: relative;
    margin: 0;
    cursor: pointer;
    border: 1px solid var(--bc, var(--border));
    background: var(--b, var(--background));
    transition: background 0.3s, border-color 0.3s, box-shadow 0.2s;
  }
  input[type='checkbox']:after,
  input[type='radio']:after {
    content: '';
    display: block;
    left: 0;
    top: 0;
    position: absolute;
    transition: transform var(--d-t, 0.3s) var(--d-t-e, ease), opacity var(--d-o, 0.2s);
  }
  input[type='checkbox']:checked,
  input[type='radio']:checked {
    --b: var(--active);
    --bc: var(--active);
    --d-o: 0.3s;
    --d-t: 0.6s;
    --d-t-e: cubic-bezier(0.2, 0.85, 0.32, 1.2);
  }
  input[type='checkbox']:disabled,
  input[type='radio']:disabled {
    --b: var(--disabled);
    cursor: not-allowed;
    opacity: 0.9;
  }
  input[type='checkbox']:disabled:checked,
  input[type='radio']:disabled:checked {
    --b: var(--disabled-inner);
    --bc: var(--border);
  }
  input[type='checkbox']:disabled + label,
  input[type='radio']:disabled + label {
    cursor: not-allowed;
  }
  input[type='checkbox']:hover:not(:checked):not(:disabled),
  input[type='radio']:hover:not(:checked):not(:disabled) {
    --bc: var(--border-hover);
  }
  input[type='checkbox']:focus,
  input[type='radio']:focus {
    box-shadow: 0 0 0 var(--focus);
  }
  input[type='checkbox']:not(.switch),
  input[type='radio']:not(.switch) {
    width: 21px;
  }
  input[type='checkbox']:not(.switch):after,
  input[type='radio']:not(.switch):after {
    opacity: var(--o, 0);
  }
  input[type='checkbox']:not(.switch):checked,
  input[type='radio']:not(.switch):checked {
    --o: 1;
  }
  input[type='checkbox'] + label,
  input[type='radio'] + label {
    font-size: 14px;
    line-height: 21px;
    display: inline-block;
    vertical-align: top;
    cursor: pointer;
    margin-left: 4px;
  }
  input[type='checkbox']:not(.switch) {
    border-radius: 5px;
  }
  input[type='checkbox']:not(.switch):after {
    width: 5px;
    height: 9px;
    border: 2px solid var(--active-inner);
    border-top: 0;
    border-left: 0;
    left: 7px;
    top: 4px;
    transform: rotate(var(--r, 20deg));
  }
  input[type='checkbox']:not(.switch):checked {
    --r: 43deg;
  }
  input[type='checkbox'].switch {
    width: 38px;
    border-radius: 5px;
  }
  input[type='checkbox'].switch:after {
    left: 2px;
    top: 2px;
    border-radius: 50%;
    width: 15px;
    height: 15px;
    background: var(--ab, var(--border));
    transform: translateX(var(--x, 0));
  }
  input[type='checkbox'].switch:checked {
    --ab: var(--active-inner);
    --x: 17px;
  }
  input[type='checkbox'].switch:disabled:not(:checked):after {
    opacity: 0.6;
  }
  input[type='radio'] {
    border-radius: 50%;
  }
  input[type='radio']:after {
    width: 19px;
    height: 19px;
    border-radius: 50%;
    background: var(--active-inner);
    opacity: 0;
    transform: scale(var(--s, 0.7));
  }
  input[type='radio']:checked {
    --s: 0.5;
  }
}
.levels {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 10px;
  flex-direction: row;
  flex-wrap: nowrap;
  position: relative;
}
.levels li {
  width: 40px;
  height: 40px;
  border-radius: 30px;
  text-align: center;
  padding-top: 7px;
  background: #D9D9D9;
}
.levels li.active {
  background: #FFA715;
  color: white;
}
.levels::before {
  content: "";
  position: absolute;
  width: 94%;
  right: 2%;
  top: 26px;
  height: 1px;
  border-bottom: 1px dotted #B2B2B2;
}
/*# sourceMappingURL=register.css.map */