@font-face {
  font-family: "noto_regular";
  src: url("../fonts/Noto_Kufi_Arabic_Regular.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "noto_bold";
  src: url("../fonts/Noto_Kufi_Arabic_Bold.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
html, body {
  outline: 0;
  padding: 0;
  margin: 0;
}

body {
  min-height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f1f1f1;
}
body.rtl {
  direction: rtl;
}
body.disabled {
  overflow: hidden;
}
body.disabled::after {
  content: "";
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 98;
  opacity: 0.4;
}

ul {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

* {
  box-sizing: border-box;
}

.signup-success {
  width: 100%;
  max-width: 500px;
  background: #FFF;
  border-radius: 10px;
  padding: 20px;
  box-shadow: -10px 10px 20px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  text-align: center;
  display: none;
  opacity: 0;
}
.signup-success.active {
  display: block;
  animation-name: fadeBox;
  animation-duration: 0.3s;
  animation-fill-mode: forwards;
  animation-timing-function: linear;
}
@keyframes fadeBox {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
.signup-success h2 {
  font-family: "noto_bold";
  margin: 0;
}
.signup-success p {
  font-family: "noto_regular";
}
.signup-success a {
  display: block;
  line-height: 45px;
  background: #1D2F38;
  color: #FFF;
  border-radius: 10px;
  font-family: "noto_regular";
  font-size: 15px;
}

.login-box {
  width: 100%;
  max-width: 500px;
  background: #FFF;
  border-radius: 10px;
  padding: 20px;
  box-shadow: -10px 10px 20px 0 rgba(0, 0, 0, 0.05);
  position: relative;
  font-family: "noto_regular";
  padding-bottom: 40px;
}
.login-box .loader {
  width: 40px;
  height: 40px;
  position: absolute;
  display: none;
  z-index: -1;
  top: 50%;
  left: 50%;
  margin-top: -13px;
  margin-left: -13px;
  border-radius: 60px;
  animation: loader 0.8s linear infinite;
  -webkit-animation: loader 0.8s linear infinite;
}
@keyframes loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
  50% {
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
    border: 4px solid #673ab7;
    border-left-color: transparent;
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
    border: 4px solid #f44336;
    border-left-color: transparent;
  }
}
.login-box.loading::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #FFF;
  opacity: 0.7;
  border-radius: 10px;
  z-index: 2;
}
.login-box.loading .loader {
  display: block;
  z-index: 3;
}
.login-box h3 {
  text-align: center;
}
.login-box input {
  display: block;
  width: 100%;
  line-height: 45px;
  padding: 0 20px;
  border: 1px #DDD solid;
  border-radius: 5px;
  margin-bottom: 20px;
  text-align: center;
}
.login-box .buttons .btn {
  display: block;
  text-align: center;
  text-decoration: underline;
  margin-bottom: 10px;
  padding: 5px;
}
.login-box .buttons button[type=submit] {
  display: inline-block;
  line-height: 45px;
  background: #1D2F38;
  color: #FFF;
  border: 0;
  padding: 0 20px;
  border-radius: 5px;
  cursor: pointer;
  width: 100%;
  font-family: "noto_regular";
}
.login-box .buttons a {
  margin: 0 20px;
  color: #333;
}
.login-box .signup-wrapper {
  text-align: center;
  height: 150px;
  border-top: 1px #DDD solid;
  margin-top: 20px;
}
.login-box .signup-wrapper p {
  color: #555;
}
.login-box .signup-wrapper a {
  display: block;
  line-height: 45px;
  background: #2981d1;
  border-color: #2981d1;
  color: #FFF;
  text-align: center;
  padding: 0 10px;
  border-radius: 5px;
  transition: 0.3s;
}
.login-box .error-message {
  display: block;
  line-height: 50px;
  padding: 0 10px;
  margin-bottom: 20px;
  border-radius: 5px;
  background: #ff5e5e4a;
  color: #d12121;
}

/*# sourceMappingURL=landing.css.map */
