/*Import Google Fonts*/
@import url('https://fonts.googleapis.com/css?family=Nunito:300,400,600,700&display=swap');
@import url("https://fonts.googleapis.com/css?family=Lato:400,700");


body {
  height: 100%;
  line-height: 24px;
  font-size: 14px;
  font-style: normal;
  font-weight: normal;
  visibility: visible;
  font-family: 'Nunito', sans-serif;
  color: #222;
}

.full-width {
  width: 100%;
}

.full-height {
  height: 100%;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  color: #222;
  font-family: 'Nunito', sans-serif;
  font-weight: 400;
  margin-top: 0;
}

h1 {
  font-size: 36px;
  line-height: 42px;
}

h2 {
  font-size: 32px;
  line-height: 36px;
}

h3 {
  font-size: 24px;
  line-height: 30px;
}

h4 {
  font-size: 18px;
  line-height: 24px;
}

h5 {
  font-size: 14px;
  line-height: 18px;
}

h6 {
  font-size: 12px;
  line-height: 24px;
}



#bg {
  background-image: url('../auth_images/background.png');
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  filter: blur(1px);
  z-index: -1;
}

.logo-image {
  position: absolute;
  transition: width .3s ease;
  transform: translate(-50%, -50%);
  left: 0;
  top: 25%;
  left: 50%;
  width: 33%;
  filter: blur(0px);
  margin-left: auto;
  margin-right: auto;

}

.line {
  height: 3px;
  width: 450px;
  background-color: white;
  margin: 1rem auto;
  transition: width .4s ease;
}

body {
  font-family: 'Lato', sans-serif;
  color: #4A4A4A;
  display: flex;
  justify-content: center;
  /*align-items: center;*/
  min-height: 100vh;
  overflow: hidden;
  margin: 0;
  padding: 0;
  background-color: black;
}

form {
  left: 50%;
  top: 30%;
  position: absolute;
  transform: translate(-50%, -50%);
  /*margin: auto;*/
  /* nice thing of auto margin if display:flex; it center both horizontal and vertical :) */
  width: 500px;
  position: relative;
}

form .form-field::before {
  font-size: 20px;
  position: absolute;
  left: 15px;
  top: 17px;
  color: #888888;
  content: " ";
  display: block;
  background-size: cover;
  background-repeat: no-repeat;
}

form .form-field:nth-child(1)::before {
  background-image: url(../auth_images/icon-user.png) !important;
  width: 20px;
  height: 20px;
  top: 15px;
}

form .form-field:nth-child(2)::before {
  background-image: url(../auth_images/icon-lock.png) !important;
  width: 20px;
  height: 20px;
}

form .form-field1::before {
  background-image: url(../auth_images/icon-user.png);
  width: 20px;
  height: 20px;
  top: 15px;
}

form .form-field2::before {
  background-image: url(../auth_images/icon-lock.png);
  width: 20px;
  height: 20px;
}

form .form-field {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 1rem;
  position: relative;
}

form input {
  font-family: inherit;
  width: 100%;
  outline: none;
  background-color: #fff;
  border-radius: 4px;
  border: none;
  display: block;
  padding: 0.9rem 0.7rem;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  font-size: 17px;
  color: #4A4A4A;
  text-indent: 40px;
}

form .btn {
  outline: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  margin: 0 auto;
  padding: 0.9rem 2.5rem;
  text-align: center;
  background-color: #429615;
  color: #fff;
  border-radius: 4px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  font-size: 17px;
}

.btn:hover {
  background-color: #1E8449 !important;
  transition: 0.7s;
  color: #fff;
}

  .btn2 {
  outline: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  margin: 0 auto;
  padding: 0.9rem 2.5rem;
  text-align: center;
  background-color: #005C86;
  color: #fff;
  border-radius: 4px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  font-size: 17px;
}

.btn2:hover {
  background-color: #154360;
  transition: 0.7s;
  color: #fff;
}

.btn1 {
  outline: none;
  border: none;
  cursor: pointer;
  display: inline-block;
  margin: 0 auto;
  padding: 0.9rem 2.5rem;
  text-align: center;
  background-color: #429615;
  color: #fff;
  border-radius: 4px;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  font-size: 17px;
}

.btn1:hover {
  background-color: #1E8449;
  transition: 0.7s;
  color: #fff;
}



@media only screen and (max-width: 1200px) {
  .logo-image {
    position: absolute;
    transition: width .3s ease;
    transform: translate(-50%, -50%);
    left: 0;
    top: 25%;
    left: 50%;
    width: 45%;
    filter: blur(0px);
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;

  }

  form {
    left: 50%;
    top: 30%;
    position: absolute;
    transform: translate(-50%, -50%);
    /*margin: auto;*/
    /* nice thing of auto margin if display:flex; it center both horizontal and vertical :) */
    width: 350px;
    position: relative;
  }

  form input {
    background-color: #fff;
    border-radius: 3px;
    font-size: 14px;
  }

}


@media only screen and (max-width: 800px) {
  .logo-image {
    position: absolute;
    transition: width .3s ease;
    transform: translate(-50%, -50%);
    left: 0;
    top: 25%;
    left: 50%;
    width: 60%;
    filter: blur(0px);
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
    height: auto;

  }

  form {
    left: 50%;
    top: 30%;
    position: absolute;
    transform: translate(-50%, -50%);
    /*margin: auto;*/
    /* nice thing of auto margin if display:flex; it center both horizontal and vertical :) */
    width: 150px;
    position: relative;
  }

  form input {
    background-color: #fff;
    border-radius: 3px;
    font-size: 12px;
  }

}
