/* Scss variable  Created By Bikash on 21-Jan-2019 */
/* GRADIENT LISTS
============================================= */
@font-face {
  font-family: "Font-Light";
  src: url("../fonts/Helvetica.eot");
  src: url("../fonts/Helvetica.eot?#iefix") format("embedded-opentype"), url("../fonts/Helvetica.woff") format("woff"), url("../fonts/Helvetica.ttf") format("truetype"), url("../fonts/Helvetica.svg#aller") format("svg");
  font-weight: normal;
  font-style: normal;
}
* {
  padding: 0;
  margin: 0;
}

*, ::after, ::before {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -ms-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

body {
  font-size: 1rem;
  margin: 0;
  padding: 0;
  background: #fff;
  color: #b2b2b2;
  font-family: Font-Light;
}

a {
  transition: all 0.2s ease-in-out;
  color: #006cc1;
  text-decoration: none;
}
a:hover, a:focus {
  color: #b8bbb3;
  text-decoration: none;
}

.login {
  display: flex;
  flex-wrap: wrap;
  flex-flow: column;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease-in-out;
  overflow: hidden;
}

p {
  margin-bottom: 1rem;
}

::-webkit-input-placeholder {
  /* Edge */
  color: #999999;
}

:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #999999;
}

::placeholder {
  color: #999999;
}

.login {
  width: 100%;
  height: 100vh;
}
.login__header {
  text-align: center;
  margin-bottom: 2rem;
}
.login__header img {
  height: 110px;
  margin-bottom: 0;
}
.login__header h1 {
  font-size: 1.6rem;
  text-transform: uppercase;
  color: #006cc1;
  margin-bottom: 0.3rem;
}
.login__header p {
  color: #b2b2b2;
}
.login__content {
  min-width: 300px;
}
.login .log-link {
  display: block;
  text-align: center;
  padding: 0.45rem 16px;
  transition: all ease-in-out 0.5s;
  color: #ffffff;
  border-radius: 2px;
  background: #006cc1;
  border: 1px solid #006cc1;
  font-size: 1.3rem;
  text-transform: uppercase;
  text-decoration: none;
}
.login .log-link:hover {
  color: #000;
  background: #fff;
}
.login .mt-1 {
  margin-top: 0.5rem;
}
.login .mb-1 {
  margin-bottom: 0.5rem;
}
.login .mb-2 {
  margin-bottom: 1rem;
}
.login .mb-3 {
  margin-bottom: 1.5rem;
}
.login .mb-4 {
  margin-bottom: 2rem;
}
.login .text-right {
  text-align: right;
}
.login .text-center {
  text-align: center;
}
.login .form-group {
  position: relative;
}
.login .passwordshowbtn {
  position: absolute;
  right: 12px;
  top: 12px;
}
.login .passwordshowbtn img {
  -webkit-filter: grayscale(100%);
  filter: grayscale(100%);
  height: 20px;
}
.login .passwordshowbtn:hover img {
  -webkit-filter: grayscale(0);
  filter: grayscale(0);
}
.login .form-control {
  display: block;
  width: 100%;
  height: calc(1.8em + .75rem + 2px);
  padding: 0.45rem 0.75rem;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.5;
  color: #515151;
  background-color: #fff;
  background-clip: padding-box;
  transition: border-color 0.15s ease-in-out;
  border: 1px solid #e1e1e1;
  border-radius: 4px;
}
.login .form-control:focus {
  box-shadow: none;
  border-color: #006cc1;
}
.login .forgotpass {
  color: #c0c0c0;
}
.login .forgotpass:hover {
  color: #006cc1;
}

@media screen and (min-width: 575px) {
  .login {
    width: 400px;
    height: auto;
    min-height: 540px;
    margin: 5% auto 0px;
    box-shadow: 0px 1px 10px #bfbfbf;
    border-radius: 4px;
    background: #fff;
  }
}
@media screen and (min-width: 768px) {
  body {
    height: 100vh;
    overflow: hidden;
    background: #f8f8f8;
  }

  .login {
    display: flex;
    flex-flow: row;
    width: 700px;
    min-height: 200px;
    justify-content: space-between;
    align-items: center;
  }
  .login__header {
    padding: 2rem;
    background: #006cc1;
    background-size: 100%;
    min-height: 430px;
    flex: 0 0 45%;
    background-position: 0 0;
    margin: 0;
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
  }
  .login__header h1 {
    color: #ffffff;
  }
  .login__header p {
    color: #ffffff;
  }
  .login__content {
    padding: 3rem 3rem 2rem 3rem;
    flex: 0 0 55%;
    max-width: 100%;
  }
}


