@charset "utf-8";
html {
  font-family: 'Noto Sans KR', sans-serif;
}
input {
  font-size: 16px;
}
.wrap {
  width: 100%;
  height: 100vh;
  background: url(/img/웹\ 1920\ –\ 14.png) center / cover no-repeat;
  position: relative;
}
.login_wrap {
  background: #ffffffd3;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 35vw;
  text-align: center;
  border-radius: 30px;
  padding: 100px 50px;
}
.input_wrap {
  display: flex;
  padding:  10px;
  align-items: center;
  gap: 10px;
  color: #6D77D1;
  background: white;
  border-radius: 15px;
  box-shadow: 0 4px 15px #8BA0F6;
  width: 80%;
  margin: 0 auto;
  margin-top: 30px;
}
.input_wrap p {
  width: 75px;
  border-right: 1px solid #707070d5;
}
.input_wrap input {
  border: none;
  width: 70%;
}
.input_wrap input:focus {
  outline: none;
}
.login_btn {
  background: #6D77D1;
  color: white;
  width: 50%;
  margin: 50px auto;
  margin-top: 150px;
  padding: 10px;
  border-radius: 20px;
  box-shadow: 0 4px 19px #8BA0F6;
  cursor: pointer;
  border: none;
}
.er_p {
  font-size: 14px;
  margin: 15px;
  color: crimson;

}
@media screen and (max-width : 1200px ) {
  .login_wrap {
    width: 50vw;
  }
}
@media screen and (max-width : 850px) {
  .login_wrap {
    width: 70vw;
  }
}
@media screen and (max-width : 580px) {
  .login_wrap {
    width: 80vw;
    padding: 50px 20px;
  }
  .input_wrap {
    width: 100%;
  }

}