
@import url(https://fonts.googleapis.com/css?family=Nunito:300);

body { font-family: "Nunito", sans-serif; font-size: 24px; }
header {
    padding: 16px 23px 15px;
    width: 100%;
    z-index: 100;
    background-color: #021B0D;
  }
  
  .header-fit {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header__logo {
    font-size: 16px;
    font-family: "Nunito";
    color: #FFFFFF;
    display: inline-block;
    text-transform: uppercase;
  }
  .header__select__wrapper {
    display: flex;
    width: 130px;
  }
  .header__select__arrow {
    width: 8px;
    position: absolute;
    right: 15px;
    top: 4px;
    transform: rotate(90deg);
  }
  
  .ls-select {
    cursor: pointer;
    position: absolute;
    top: 2px;
    right: -5px;
  }
  
  .ls-select__head {
    width: 100px;
    color: #FFFFFF;
    font-family: "Nunito";
    font-size: 16px;
    padding-bottom: 15px;
  }
  
  .ls-select__option-list {
    display: none;
    width: 115px;
    height: 100%;
  }
  
  .ls-select--opened .ls-select__option-list {
    display: block;
    position: absolute;
    left: -25px;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1607843137);
    height: 350px;
  }
  
  .ls-select__option {
    height: 44px;
    padding: 12px 0 0 18px;
    width: 100%;
    font-family: "Nunito";
    font-size: 16px;
    background-color: #FFFFFF;
    color: #586589;
    border-radius: 5px;
  }
  
  .ls-select__option--selected, .ls-select__option:hover {
    background-color: #F4F4F8;
  }
  
  @media only screen and (min-width: 768px) {
    header {
      padding: 18px 30px 15px 25px;
    }
    .header__logo {
      font-size: 24px;
    }
  }
  @media only screen and (min-width: 1280px) {
    header {
      padding: 14px 35px 15px 25px;
    }
    .header-fit {
      width: 100%;
      max-width: 1250px;
      margin: 0 auto;
    }
    .header__logo {
      font-size: 21px;
    }
  }

  * {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
  }
  
  body {
    display: flex;
    flex-direction: column;
    background-color: #F8F9FA;
  }
  
  .main-background {
    background-color: #FFFFFF;
    display: flex;
    height: 100vh;
    flex-direction: column;
  }
  
  img {
    max-width: 100%;
  }
  
  a, a:visited {
    text-decoration: none;
  }
  
  html {
    height: 100%;
  }
  
  body {
    min-height: 100%;
  }
  
  @media only screen and (min-width: 768px) {
    body::before {
      width: 100%;
      content: "";
      position: absolute;
      height: 150px;
      background-color: #E1E9EB;
    }
    .main-background {
      position: relative;
      width: 690px;
      margin: auto;
      background-color: #FFFFFF;
      display: flex;
      min-height: 923px;
      height: unset;
      flex-direction: column;
      box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.1);
    }
  }
  @media only screen and (min-width: 1370px) {
    .main-background {
      width: 1370px;
      min-height: 980px;
    }
  }
  .body-shadow {
    width: 100vw;
    height: 100vh;
    position: absolute;
    background-color: rgba(14, 94, 96, 0.631372549);
    z-index: 9999999;
    backdrop-filter: blur(5px);
  }
  
  .loading-animation {
    width: 100px;
    margin: auto;
  }
  
  .border-error {
    border: 1px solid #FE697D;
  }
  .border-error:focus {
    border: 1px solid #FE697D;
  }
  
  .main {
    display: flex;
    flex: 1 0 auto;
    flex-direction: column;
  }
  .main__cover {
    max-width: 320px;
    margin: auto;
  }
  .main__icon {
    margin: auto;
    width: 75px;
    height: 75px;
    border-radius: 50%;
    box-shadow: 0 0 16px rgba(0, 0, 0, 0.16);
    
  }
  .main__icon__img {
    width: 100%;
  }
  .main__header {
    text-align: center;
    padding: 25px 0 18px;
    font-size: 32px;
    font-family: "Nunito";
    color: #586589;
  }
  .main__text {
    text-align: center;
    font-size: 18px;
    font-family: "Nunito";
    color: rgba(88, 101, 137, 0.75);
    padding-bottom: 34px;
  }
  .main__error-text {
    font-family: "Nunito";
    font-size: 16px;
    color: #FE697D;
    text-align: center;
    line-height: 1.5;
  }
  .main__code-block {
    text-align: center;
    margin-bottom: 27px;
  }
  
  form input {
    width: 200px;
    height: 45px;
    margin-right: 16px;
    text-align: center;
    font-size: 15px;
    color: #000000;
    font-family: "Nunito";
    background-color: #F8F8FA;
    border: none;
    outline: none;
    border-radius: 7px;
    box-shadow: 0 3px 6px rgba(214, 215, 222, 0.368627451);
    caret-color: #828CA7;
  }
  form input:last-child {
    margin-right: 0;
  }
  form input:focus {
    border: 1px solid #828CA7;
  }
  
  form input::-webkit-inner-spin-button,
  form input::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }
  
  .display-none {
    display: none;
  }
  
  .direction-rtl {
    direction: rtl;
  }
  .direction-rtl input:last-child {
    margin-right: 33px;
  }
  .direction-rtl input:first-child {
    margin-right: 0;
  }
  
  @media only screen and (min-width: 768px) {
    .main__cover {
      max-width: 510px;
      margin: auto;
    }
    .main__icon {
      width: 100px;
      height: 100px;
    }
    .main__header {
      text-align: center;
      padding: 22px 0 18px;
      font-size: 42px;
    }
    .main__text {
      font-size: 22px;
      padding-bottom: 59px;
    }
    form input {
      width: auto;
      height: 60px;

      font-size: 34px;
    }
  }
  
  
  /*# Button */

  