/* LOGIN PAGE */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none !important;
  font-family: Arial, sans-serif;
  font-size: 1rem;
}

.login-page ::-webkit-input-placeholder {
  color: #888 !important;
} /* Chrome */
.login-page ::-moz-placeholder {
  color: #888 !important;
} /* firefox 19+ */
.login-page,
.login-form div,
.login-form section {
  display: flex;
}

.login-page {
  height: 100vh;
  justify-content: center;
  align-items: center;
  background: #fff;
}
.login-page .logo {
  width: 140px;
  margin: auto;
  display: block;
  margin-bottom: 8vh;
}

.login-form h3 {
  font-weight: 500;
  color: #9d959b;
  margin-bottom: 1rem;
}

.login-form section {
  flex-direction: column;
  margin-right: 8px;
}

.login-form span {
  color: #f5f5f5;
  position: relative;
  overflow: hidden;
}

.login-form input {
  background: #f6f2ff;
  border: none;
  border-bottom: 2px solid transparent;
  line-height: 3rem;
  color: #000;
  width: 100%;
  font-size: 0.85rem;
  text-indent: 1rem;
  min-width: 300px;
  transition: all 0.25s ease;
}
.login-form input:focus {
  border-color: #5400fc;
}

.login-form span i {
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
}

.login-form span:first-child {
  border-radius: 3px 3px 0 0;
  margin-bottom: 1px;
}

.login-form button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  border: none;
  padding: 0 18px;
  background: #320096;
  border-radius: 3px;
  color: #f5f5f5;
  cursor: pointer;
}
.login-form button * {
  transition: all 0.25s;
}
.login-form button:hover svg {
  fill: #fff;
}
.login-form button.loading .unlock {
  fill: #fff;
}
.login-form button.loading .spinner {
  height: initial;
  margin-top: 8px;
}
.login-form button .unlock {
  width: 26px;
  height: 26px;
  fill: rgba(255, 255, 255, 0.7);
}
.login-form button .spinner {
  height: 0;
}

footer {
  position: fixed;
  width: 100%;
  bottom: 0;
  left: 0;
  line-height: 60px;
  text-align: center;
  font-size: 0.7rem;
  opacity: 0.7;
}

.spinner {
  animation: rotate 2s linear infinite;
  width: 19px;
  height: 19px;
}
.spinner .path {
  stroke: #fff;
  stroke-linecap: round;
  animation: dash 1.5s ease-in-out infinite;
}

.XM-activateAccount .introTxt, .XM-activateAccount .xform {
  max-width: 400px;
}
.XM-activateAccount .introTxt {
  margin-bottom: 1.5rem;
  font-size: 0.85rem;
  line-height: 1.7;
  padding: 1rem;
  background: #f1f8ff;
  border: 1px #d8ebff solid;
  border-radius: 3px;
  text-align: center;
}

/* KEYFRAMES */
@keyframes rotate {
  100% {
    transform: rotate(360deg);
  }
}
/* Mobile Styles */
@media (max-width: 768px) {
  .login-page {
    padding: 1rem;
  }
  .login-page .logo {
    width: 120px;
    margin-bottom: 5vh;
  }
  .login-form input {
    min-width: 100%;
  }
  footer {
    line-height: 50px;
    font-size: 0.6rem;
  }
  .XM-activateAccount .introTxt, .XM-activateAccount .xform {
    max-width: 90%;
    padding: 1rem;
  }
}

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