@font-face {
  font-family: "Frank Ruhl Libre";
  font-display: fallback;
  src: url("../font/frank_ruhl_libre/FrankRuhlLibre-Black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  font-display: fallback;
  src: url("../font/inter/Inter-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  font-display: fallback;
  src: url("../font/inter/Inter-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
}
::-moz-focus-inner {
  border: 0;
} /* Firefox button focus */

::-webkit-input-placeholder {
  color: #a8a3a4;
}
::-ms-input-placeholder {
  color: #a8a3a4;
}
:-ms-input-placeholder {
  color: #a8a3a4;
}
::-moz-placeholder {
  color: #a8a3a4;
}
::placeholder {
  color: #a8a3a4;
}

*,
::before,
::after {
  font-family: Inter, Arial, sans-serif;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  outline: none;
}
html,
body {
  margin: 0;
  padding: 0;
  height: 100vh;
  width: 100%;
}
body {
  font-size: 14px;
  line-height: 20px;
  background: #ffffff;
  overflow: hidden;
}
a,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
}

.flex,
.flex-col,
.flex-row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.half {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}

#mn-login {
  height: 100%;
}
#mn-image-container {
  height: 100%;
}
#mn-login-content {
  width: 38%;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: auto;
}
#mn-login-frame {
  width: 62%;
  background-color: #000000;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

#mn-logo-image {
  height: 52px;
  margin: 32px auto 52px auto;
  display: block;
}

#mn-box {
  width: 100%;
  height: 100%;
  max-width: 576px;
  padding: 0 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  -webkit-transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}

#mn-box-inner h1 {
  font-family: "Frank Ruhl Libre", Arial, sans-serif;
  font-size: 34px;
  line-height: 50px;
  font-weight: 900;
  color: #000000;
  margin: 0;
}

.mn-button {
  position: relative;
  display: block;
  padding: 13px 32px;
  margin: 32px 0;
  text-align: center;
  text-decoration: none;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #ffffff;
  background-color: #000000;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  -webkit-transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 6px;
  border: none;
  border: 1px solid #000000;
}
.mn-button:hover {
  background-color: #e5405c;
  border-color: #e5405c;
  -webkit-transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mn-button:focus {
  background-color: #d43c56;
  border-color: #d43c56;
  -webkit-transition: -webkit-box-shadow 0.2s ease 0s !important;
  transition: -webkit-box-shadow 0.2s ease 0s !important;
  -o-transition: box-shadow 0.2s ease 0s !important;
  transition: box-shadow 0.2s ease 0s !important;
  transition: box-shadow 0.2s ease 0s, -webkit-box-shadow 0.2s ease 0s !important;
}
#mn-login.agency .mn-button {
  background-color: #ffffff;
  color: #000000;
}
#mn-login.agency .mn-button:hover {
  color: #e5405c;
  border-color: #e5405c;
}
#mn-login.agency .mn-button:focus {
  color: #d43c56;
  border-color: #d43c56;
}

.mn-button .mn-button-spinner {
  display: none;
}
.mn-button.loading .mn-button-spinner {
  display: block;
}
.mn-button span {
  font-size: 16px;
  line-height: 24px;
}
.mn-button.loading span {
  opacity: 0;
  visibility: hidden;
}

.mn-input {
  width: 100%;
  margin-top: 20px;
  border: 1px solid #dcdadb;
  color: #1e1d1d;
  border-radius: 4px;
  padding: 13px 20px;
  font-size: 16px;
  line-height: 24px;
  background-color: transparent;
  -webkit-transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mn-input:focus {
  border: 1px solid #000000;
  -webkit-box-shadow: inset 0 0 0 1px #000000;
  box-shadow: inset 0 0 0 1px #000000;
  -webkit-transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mn-error {
  border-color: #ca1310 !important;
  -webkit-box-shadow: inset 0 0 0 1px #ca1310 !important;
  box-shadow: inset 0 0 0 1px #ca1310 !important;
}
.mn-passwordsendbox {
  margin: 20px 0 32px 0;
  color: #000000;
  font-size: 16px;
  line-height: 27px;
}

.mn-link {
  color: #000000;
  white-space: nowrap;
  -webkit-transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 200ms cubic-bezier(0.4, 0, 0.2, 1);
}
.mn-link:hover {
  color: #e5405c;
  -webkit-transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  -o-transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: all 250ms cubic-bezier(0.4, 0, 0.2, 1);
}

.mn-passlink {
  padding-top: 12px;
}
.mn-servicelinks {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  flex-wrap: wrap;
}

.mn-dot {
  font-size: 14px;
  line-height: 20px;
  padding: 0 10px;
  color: #000000;
}
#mn-marketing {
  width: 100%;
  height: 100%;
  display: block;
  margin: 0;
  border: 0;
}

.mn-fielderrors {
  display: none;
  border-radius: 4px;
}
#mn-mainerrors,
.ncbrowser {
  border-radius: 2px;
  background-color: #faebeb;
  color: #000000;
  font-weight: 500;
  padding: 12px 20px;
  margin-top: 20px;
}

@media only screen and (max-width: 1024px) {
  #mn-login-frame,
  #mn-marketing {
    display: none;
  }
  #mn-login-content {
    width: 100%;
  }
}
@media only screen and (max-width: 520px) {
  #mn-logo-image {
    height: 32px;
  }
  #mn-box-inner h1 {
    font-size: 24px;
    line-height: 34px;
  }
  #mn-box {
    padding: 0 20px;
  }
  .mn-button {
    margin: 16px 0;
  }
}

.mn-button-spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.mn-button-spinner > div {
  width: 6px;
  height: 6px;
  background-color: currentColor;
  border-radius: 100%;
  display: inline-block;
  -webkit-animation: bouncedelay 1.4s infinite ease-in-out both;
  animation: bouncedelay 1.4s infinite ease-in-out both;
}
.mn-button-spinner .dot1 {
  margin-right: 2px;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.mn-button-spinner .dot2 {
  margin-right: 2px;
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0.2;
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes bouncedelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
    opacity: 0.2;
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
  }
}
