/*************************************
=modules
*************************************/
/*************************************
=logo wrapper
*************************************/
.logo-wrapper {
  width: 100px;
}

/*************************************
=login styles
*************************************/
/*************************************
=login
*************************************/
body {
  background-color: #fff;
}

.navigation-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 72px 15px;
}

@media (max-width: 767px) {
  .navigation-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 30px 15px;
  }
}

.navigation-wrapper .logo-wrapper {
  display: block;
  width: 250px;
  margin: auto;
}

@media (max-width: 767px) {
  .navigation-wrapper .logo-wrapper {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 20px;
  }
}

.navigation-wrapper .logo-wrapper .main-brand {
  width: 250px;
}

.navigation-wrapper .menu {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

@media (max-width: 767px) {
  .navigation-wrapper .menu {
    text-align: center;
  }
}

.login-wrapper, .forgot-password-wrapper {
  width: 90%;
  max-width: 360px;
  margin: 50px auto 0;
  text-align: center;
}

.login-wrapper .heading, .forgot-password-wrapper .heading {
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 400;
}

.login-wrapper .form-control, .forgot-password-wrapper .form-control {
  display: block;
  width: 100%;
  padding: 10px 15px;
  background-color: transparent;
  border: 1px solid #d4d4d4;
  border-radius: 10px;
  outline: none;
  font-size: 16px;
  -webkit-transition: border .3s ease-in-out 0s;
  transition: border .3s ease-in-out 0s;
}

.login-wrapper .btn, .forgot-password-wrapper .btn {
  display: block;
  width: 100%;
  margin-bottom: 20px;
  padding: 10px 24px;
  border-radius: 10px;
  font-size: 15px;
}

.login-wrapper .btn .icon-svg, .forgot-password-wrapper .btn .icon-svg {
  position: relative;
  top: -2px;
  margin-left: 5px;
  margin-right: 0;
  -webkit-transform: translateX(0);
          transform: translateX(0);
  -webkit-transition: -webkit-transform .3s ease-in-out 0s;
  transition: -webkit-transform .3s ease-in-out 0s;
  transition: transform .3s ease-in-out 0s;
  transition: transform .3s ease-in-out 0s, -webkit-transform .3s ease-in-out 0s;
}

.login-wrapper .btn .icon-svg svg, .forgot-password-wrapper .btn .icon-svg svg {
  --svg-dimension: 13px;
  width: var(--svg-dimension);
  height: var(--svg-dimension);
}

.login-wrapper .back-link, .forgot-password-wrapper .back-link {
  font-size: 15px;
  color: inherit;
}
/*# sourceMappingURL=authorization.css.map */