@import url(fontface.css);
body {
  font-family: "Roboto", Arial, sans-serif;
  color: #333334; }

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 30px white inset !important; }

.screen {
  height: 100vh; }
  @media (min-width: 992px) {
    .screen {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }

.bg-login {
  background: url(../images/login-bg.jpg) no-repeat;
  background-size: cover;
  background-position: center;
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2; }

.bg-login {
  width: 100%;
  height: 500px; }
  @media (min-width: 992px) {
    .bg-login {
      width: 50%;
      height: 100vh;
      -webkit-box-ordinal-group: 3;
          -ms-flex-order: 2;
              order: 2; } }

.panel-login {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
  width: 100%;
  padding-top: 55px;
  padding-bottom: 40px; }
  @media (min-width: 992px) {
    .panel-login {
      width: 50%;
      padding-top: 0; } }
  .panel-login .row {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
    @media (min-width: 992px) {
      .panel-login .row {
        height: 100vh; } }

.login-form .form-control {
  border: none; }
  .login-form .form-control:focus {
    border: none; }
  .login-form .form-control::-webkit-input-placeholder {
    color: #5b646c;
    font-weight: regular; }
  .login-form .form-control::-moz-placeholder {
    color: #5b646c;
    font-weight: regular; }
  .login-form .form-control:-ms-input-placeholder {
    color: #5b646c;
    font-weight: regular; }
  .login-form .form-control::-ms-input-placeholder {
    color: #5b646c;
    font-weight: regular; }
  .login-form .form-control::placeholder {
    color: #5b646c;
    font-weight: regular; }

.login-form.registration .form-control::-webkit-input-placeholder {
  color: #b3b3b3;
  font-weight: regular;
  font-size: 16px; }

.login-form.registration .form-control::-moz-placeholder {
  color: #b3b3b3;
  font-weight: regular;
  font-size: 16px; }

.login-form.registration .form-control:-ms-input-placeholder {
  color: #b3b3b3;
  font-weight: regular;
  font-size: 16px; }

.login-form.registration .form-control::-ms-input-placeholder {
  color: #b3b3b3;
  font-weight: regular;
  font-size: 16px; }

.login-form.registration .form-control::placeholder {
  color: #b3b3b3;
  font-weight: regular;
  font-size: 16px; }

.login-form .form-check {
  margin-bottom: 35px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.form-group {
  border: 1px solid #efefef;
  padding: 15px; }
  .form-group.first {
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    border-bottom: none;
    margin-bottom: 0; }
  .form-group.second {
    margin-bottom: 0;
    border-bottom: none; }
  .form-group.last {
    border-bottom-left-radius: 8px;
    border-bottom-right-radius: 8px;
    margin-bottom: 30px; }

.login-header {
  font-size: 26px;
  font-weight: regular; }

.login-description {
  font-size: 16px;
  font-weight: 300;
  display: block;
  margin-bottom: 30px;
  color: #b3b3b3; }

.login-form label {
  font-size: 16px;
  font-weight: normal;
  display: block;
  margin-bottom: 0;
  color: #b3b3b3; }

.btn {
  padding: 10px 30px;
  border-radius: 5px;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  font-size: 16px;
  font-weight: 500; }
  @media (min-width: 600px) {
    .btn {
      padding: 10px 60px;
      font-size: 18px; } }
  .btn.btn-login {
    background: #462170;
    color: #fff;
    width: 100%;
    border: none; }
    .btn.btn-login:hover, .btn.btn-login:focus, .btn.btn-login:active {
      background: #2d1549;
      outline: none; }
  .btn:focus + label:before {
    -webkit-box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12);
            box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.12); }

input[type="checkbox"] {
  position: absolute;
  opacity: 0; }
  input[type="checkbox"] + label {
    position: relative;
    cursor: pointer;
    padding: 0; }
  input[type="checkbox"] + label:before {
    content: "";
    margin-right: 10px;
    display: inline-block;
    vertical-align: text-top;
    width: 20px;
    height: 20px;
    background: #462170;
    border-radius: 3px;
    position: relative;
    top: -2px; }
  input[type="checkbox"]:hover + label:before {
    background: #462170; }
  input[type="checkbox"]:checked + label:before {
    background: #462170; }
  input[type="checkbox"]:checked + label:after {
    content: "";
    position: absolute;
    left: 5px;
    top: 10px;
    background: white;
    width: 2px;
    height: 2px;
    -webkit-box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
            box-shadow: 2px 0 0 white, 4px 0 0 white, 4px -2px 0 white, 4px -4px 0 white, 4px -6px 0 white, 4px -8px 0 white;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); }

.terms {
  text-decoration: underline;
  color: #b3b3b3;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease; }
  .terms:hover {
    color: #462170; }

.social-login .btn {
  width: 100%;
  color: #fff; }
  .social-login .btn:not(:last-child) {
    margin-bottom: 20px; }
  .social-login .btn span {
    -webkit-filter: invert(1);
            filter: invert(1);
    display: inline-block;
    margin-right: 5px; }

.social-login .facebook {
  background-color: #3b5998; }
  .social-login .facebook img {
    max-width: 6px;
    margin-top: -3px; }
  .social-login .facebook:hover {
    background: #3b5282; }

.social-login .twitter {
  background: #1da1f2; }
  .social-login .twitter img {
    max-width: 16px;
    margin-top: -2px; }
  .social-login .twitter:hover {
    background: #1a8acf; }

.social-login .google {
  background: #e82e1e; }
  .social-login .google img {
    max-width: 14px;
    margin-top: -2px; }
  .social-login .google:hover {
    background: #cb2617; }

.otheroptions {
  font-size: 19px;
  font-weight: 300;
  text-align: center;
  padding: 10px 0; }

.btn.btn-home {
    background: #462170;
    color: #fff;
    border: none;
}