/*
 * Variables
 */
/*
 * Fonts
 */
@font-face {
  font-family: "Mont";
  src: url("fonts/Mont/Mont-Regular.woff") format("woff");
}
@font-face {
  font-family: "Mont Bold";
  src: url("fonts/Mont/Mont-Bold.woff") format("woff");
}
@font-face {
  font-family: "Mont Book";
  src: url("fonts/Mont/Mont-Book.woff") format("woff");
}
/*
 * Styles
 */
html, body {
  color: #000000;
  font-family: "Mont", sans-serif;
}

body {
  background: #000000;
}

#login {
  margin: 0;
  padding: 0;
}

.language-switcher {
  display: none !important;
}

.login-left {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  width: 480px;
}

.login-right {
  position: fixed;
  top: 0;
  left: 480px;
  width: calc(100% - 480px);
  height: 100%;
  background-color: black;
  background-size: cover;
  background-repeat: no-repeat;
}
.login-right:before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100%;
  background: linear-gradient(90deg, black 0%, rgba(0, 0, 0, 0) 100%);
}
.login-right .tagline {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  position: absolute;
  z-index: 2;
  bottom: 40px;
  left: 80px;
  pointer-events: none;
}
.login-right .tagline .tagline-text {
  width: 337px;
  height: 170px;
}
.login-right .tagline .tagline-arrow {
  display: none;
  width: 57px;
  height: 28px;
  transition: all 250ms ease-in-out;
}
.login-right #login-slider {
  position: absolute;
  top: 0;
  z-index: 1;
  left: 0;
  width: 100%;
  height: 100%;
}
.login-right #login-slider .slick-list,
.login-right #login-slider .slick-track {
  height: 100%;
}
.login-right #login-slider a {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.login-right #login-slider a > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.login h1 a {
  width: 210px;
  height: 83px;
  background-image: url("../../../assets/images/login/logo-rubik.svg");
  background-size: auto;
}
.login form {
  box-shadow: none;
  border: 0;
  padding: 50px 25px 25px 25px;
}
.login form label {
  margin-bottom: 5px;
}
.login form input[type=text],
.login form input[type=email],
.login form input[type=checkbox],
.login form input[type=password] {
  border-radius: 0;
  border-color: #000000;
}
.login form input[type=checkbox] {
  width: 20px;
  height: 20px;
}
.login form input[type=checkbox]:checked {
  position: relative;
}
.login form input[type=checkbox]:checked:before {
  content: "";
  position: absolute;
  top: 6px;
  left: 7px;
  width: 12px;
  height: 12px;
  background-image: url("../../../assets/images/login/login-checkmark.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.login form .forgetmenot {
  width: 100%;
  margin-top: 6px;
  float: none !important;
}
.login form .forgetmenot label {
  vertical-align: middle;
  margin-bottom: 0;
}
.login form .submit {
  width: 100%;
  margin-top: 10px !important;
}
.login form .submit input {
  border: 0;
  border-radius: 0;
  background: #444DFA;
  font: 16px/1em "Mont Bold", sans-serif;
  text-transform: uppercase;
  width: 100%;
  transition: all 250ms ease-in-out;
}
.login form .submit input:hover {
  background: #000000;
}
.login #backtoblog {
  display: none;
}
.login #nav {
  background: #FFFFFF;
  margin-top: 0;
  padding-bottom: 25px;
  text-align: center;
}
.login #nav a {
  color: #444DFA;
  transition: all 250ms ease-in-out;
}
.login #nav a:hover {
  color: #000000;
}
.login .dashicons {
  color: #444DFA;
}

/*
 * Responsive
 */
@media (max-height: 480px) {
  .login-left {
    display: block;
    align-items: revert;
    min-height: auto;
  }
  .login-left #login {
    padding: 8% 0;
  }
}
@media (max-width: 1023px) {
  .login-left {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    width: 100%;
  }

  .login-right {
    display: none;
  }
}

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