body{
  font-family: 'Roboto', sans-serif;
}

.login-container{
  width: 100%;
  height: 100vh;
  background-image: url('../img/login_bg.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
}

.login-card{
  max-width: 585px;
  height: auto;
  border-radius: 7%;
  padding: 3% 3.5% 10px 3.5%;
  background-color: rgba(22, 0, 49, 0.15);
  margin-bottom: 10px;
}

.login-container h1{
  font-size: 41px;
  font-weight: 400;
  line-height: 2.71;
  letter-spacing: normal;
  text-align: center;
  color: #ffffff;
}

.input-container{
  position: relative;
  width: 100%;
}

.input-container img{
  width: 24px;
  height: auto;
  position: absolute;
  left: 22px;
  top:0;
  bottom:0;
  margin: auto;
}

.input-container input{
  width: 100%;
  height: 62px;
  border:0;
  outline: 0;
  padding: 0 10px 0 55px;
  background-color: rgba(255,255,255,0.33);
  border-radius: 22.6px;
}

.input-container input::placeholder{
  font-size: 18px;
  font-weight: 300;
  line-height: 5.55;
  color: #ffffff;
}

.login-card button{
  padding: 0;
  margin-top:20%;
  width: 80%;
  height: 60px;
  border:0;
  outline: 0;
  background-color: rgba(255,255,255,0.33);
  border-radius: 22.6px;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
}

.login-container .close{
  cursor: pointer;
  color:#fff;
  position: absolute;
  right: 5vw;
  top:2vh;
  font-weight: 300;
  opacity: 1;
  font-size: 76px;
}

@media only screen and (max-width: 600px) {
  .login-container{
    padding: 0 10%!important;
  }
  .input-container{
    width: 90%;
    margin: auto;
  }

  .input-container input::placeholder{
    font-size: 14px;
  }

  .login-container h1{
    font-size: 32px;
  }

  .login-card button{
    font-size: 20px;
  }
  .login-container .close{
    font-size: 60px;
  }
}

@media only screen and (max-width: 320px) {
  .login-container .close{
    font-size: 60px;
    top:2px;
    right: 2px;
    line-height: 0.5;
  }
  .login-container .close span{
    line-height: 0.5;
  }
}
