﻿@font-face {
  font-family: "Roboto";
  src: url("/Fonts/RobotoRegular.woff2") format("woff2");
  font-weight: 400;
}
@font-face {
  font-family: "Roboto";
  src: url("/Fonts/RobotoMedium.woff2") format("woff2");
  font-weight: 500;
}
@font-face {
  font-family: "Roboto";
  src: url("/Fonts/RobotoLight.woff2") format("woff2");
  font-weight: 300;
}
html, body {
  width: 100%;
  height: 100%;
}

header {
  position: initial;
}

.fill {
  height: 100%;
  min-height: 100%;
}

.container.fill {
  display: flex;
}

.row.fill {
  width: 100%;
  min-width: 100%;
}

.col-12.fill {
  display: flex;
}

.login-form-wrapper {
  flex: 0 0 50%;
  align-items: center;
  margin-top: 100px;
}
.login-form-wrapper .login-form {
  color: #fff;
  border-radius: 20px;
  width: 100%;
  min-width: 100%;
  box-sizing: border-box;
  padding: 50px 50px;
  background-color: rgba(0, 0, 0, 0.75);
}
.login-form-wrapper .login-form h2 {
  font-size: 44px;
  font-weight: normal;
  margin-bottom: 30px;
}
.login-form-wrapper .login-form p {
  font-size: 18px;
  line-height: 28px;
  font-weight: normal;
  margin-bottom: 30px;
}
.login-form-wrapper .login-form .form-item {
  margin-bottom: 20px;
}
.login-form-wrapper .login-form .form-item .form-control {
  background-color: #000;
  color: #fff;
}
.login-form-wrapper .login-form .form-item .remember-me-section {
  display: flex;
  color: #fff;
}
.login-form-wrapper .login-form .form-item .remember-me-section .remember-me-item {
  flex: 0 0 50%;
  color: #fff;
}
.login-form-wrapper .login-form .form-item .remember-me-section .remember-me-item a {
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  display: block;
  margin-top: 12px;
  text-align: right;
}
.login-form-wrapper .login-form .form-item button {
  width: 100%;
  display: block;
  margin-top: 40px;
  padding: 16px 0;
}
.login-form-wrapper .login-form .form-item.policy-links {
  color: #fff;
}
.login-form-wrapper .login-form .form-item.policy-links a {
  color: #fff;
  transition: 0.4s;
}
.login-form-wrapper .login-form .form-item.policy-links a:hover {
  color: #949494;
}
.login-form-wrapper .login-form input:-webkit-autofill,
.login-form-wrapper .login-form input:-webkit-autofill:hover,
.login-form-wrapper .login-form input:-webkit-autofill:focus,
.login-form-wrapper .login-form input:-webkit-autofill:active {
  -webkit-background-clip: text;
  -webkit-text-fill-color: #fff;
  -webkit-box-shadow: 0 0 0px 1000px #000 inset;
  transition: background-color 10000s ease-in-out 0s;
}

.overlay {
  background: url("/Images/LoginBG.jpg") no-repeat right center;
  background-size: cover;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -10;
}

@media screen and (max-width: 768px) {
  .overlay {
    background-position: center center;
  }
  header .header-items .info .info-item a {
    color: #fff;
  }
  .container.fill {
    display: block;
  }
  .container.fill .row.fill {
    margin: 0;
  }
  .container.fill .col-12.fill {
    display: block;
  }
  .login-form-wrapper {
    margin-top: 220px;
    display: block;
  }
  .login-form-wrapper .login-form h2 {
    font-size: 36px;
    margin-bottom: 20px;
  }
  .login-form-wrapper .login-form p {
    font-size: 14px;
    line-height: 20px;
  }
  .login-form-wrapper .login-form .form-item button {
    margin-top: 10px;
  }
}
