@import url('https://fonts.googleapis.com/css?family=Montserrat:400,500,600,700|Poppins:400,500&display=swap');

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  user-select: none;
}

.bg-img {
  background: url('../images/auth_bg.jpg');
  height: 100vh;
  background-size: cover;
  background-position: center;
}

.bg-img:after {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.7);
}

@media screen and (max-width: 768px) {
  .exit {
    position: fixed;
    top: -2%;
    left: 0px;
    margin: 5%;
    font-size: 25px;
    line-height: 45px;
    font-weight: normal;
    color: #ffffff!important;
    z-index: 999;
  }
}

@media screen and (min-width: 769px) {
  .exit {
    position: fixed;
    top: -5%;
    left: 0px;
    margin: 5%;
    font-size: 25px;
    line-height: 45px;
    font-weight: normal;
    color: #ffffff!important;
    z-index: 999;
  }
}

.content {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 999;
  text-align: center;
  padding: 60px 32px;
  width: 370px;
  transform: translate(-50%, -50%);
  background: rgba(196, 196, 196, 0.62);
  box-shadow: -1px 4px 28px 0px rgba(0, 0, 0, 0.75);
  border-radius: 10px;
}

.content header {
  color: white;
  font-size: 33px;
  font-weight: 600;
  margin: 0 0 35px 0;
  font-family: 'Montserrat', sans-serif;
}

.field {
  position: relative;
  height: 45px;
  width: 100%;
  display: flex;
  /*background: #FFFFFF;*/
  border-radius: 10px;
}

.field span {
  color: #222;
  width: 40px;
  line-height: 45px;
}

.field input {
  height: 100%;
  width: 100%;
  background: #FFFFFF;
  border: none;
  outline: none;
  border-radius: 15px;
  color: #222;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}

.bg-white {
  background: #FFFFFF;
}

.space {
  margin-top: 16px;
}

.show {
  position: absolute;
  right: 13px;
  font-size: 13px;
  font-weight: 700;
  color: #000;
  /*display: none;*/
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}

.pass-key:valid ~ .show {
  display: block;
}

.pass {
  text-align: center;
  /*margin: 10px 0;*/
  margin-top: 10%;
}

.pass a {
  color: white;
  text-decoration: none;
  font-family: 'Poppins', sans-serif;
}

.pass:hover a {
  text-decoration: underline;
}

.field input[type="submit"] {
  background: #032E42;
  /*border: 1px solid #2691d9;*/
  color: white;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 600;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
}

.field input[type="submit"]:hover {
  background: linear-gradient(226.57deg, #032E42 -13.86%, #BB0B0B 74.32%);
}

.login {
  color: white;
  margin: 20px 0;
  font-family: 'Poppins', sans-serif;
}

.links {
  display: flex;
  cursor: pointer;
  color: white;
  margin: 0 0 20px 0;
}

.links i {
  font-size: 17px;
}

i span {
  margin-left: 8px;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
}

.signup {
  font-size: 15px;
  color: white;
  font-family: 'Poppins', sans-serif;
  margin-top: 2%;
  margin-bottom: 5%;
}

.signup a {
  color: #032E42;
  text-decoration: none;
}

.signup a:hover {
  text-decoration: underline;
}