@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');

body {
  font-family: 'Noto Sans KR', sans-serif;
  margin: 0;
}

body::after {
  content: '';
  background: url('../img/PMS_BG_image.jpg');
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}

#wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  position: relative;
  bottom: 100px;
}

#login-bottom-img {
  position: absolute;
  bottom: 0px;
}

#login-bottom-img img{
  width: 90px;
}

.title img {
  width: 350px;
  margin-right: 100px;
}

.login {
  width: 450px;
  padding: 30px;
  border-radius: 10px;
  background: white;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}

.login form {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login form input {
  display: block;
  padding: 0;
  border: 0;
  margin: 0;
  width: 100%;
  padding: 5px;
  
  font-size: 18px;
  box-sizing: border-box;
  font-family: 'Noto Sans KR', sans-serif;
}

.login .form-input {
  width: 100%;
  margin-bottom: 30px;
}

.login .form-input>div {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #cbcbcb;
  margin: 15px 0;
  padding-left: 10px;
}

.login .form-input input {
  margin-left: 10px;
  font-weight: 500;
  line-height: 2;
}

.login .form-input i {
  font-size: 20px;
  opacity: .5;
}

.login .form-input input:focus {
  outline: none;
}

.login-button {
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.7);
  font-weight: bold;
  color: white;
  line-height: 2.3;
  cursor: pointer;
  transition: .2s ease-in-out background-color;
}

.login-button:hover {
  background-color: rgba(0, 0, 0, 0.9);
}