#change-password {
}

#reset-password {
  display: none;
}

.page-container {
  width: 100vw;
  height: 100vh;
  background: #eff0f2;
  display: flex;
  justify-content: center;
  align-items: center;
}
.shadow {
  -webkit-box-shadow: 27px 43px 43px -26px rgba(89, 89, 89, 0.39);
  -moz-box-shadow: 27px 43px 43px -26px rgba(89, 89, 89, 0.39);
  box-shadow: 27px 43px 43px -26px rgba(89, 89, 89, 0.39);
}
.login-form-container {
  background: #f5f5f5;
  width: 510px;
  height: 460px;
  display: flex;
  flex-direction: row;
  box-shadow: 10px black;
  border-radius: 10px;
}

.login-form h3 {
  color: #2178ff;
  width: 100%;
  display: block;
  text-align: center;
}

.login-form {
  width: 100%;
  border-radius: 0px 10px 10px 0px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px;
  background: rgb(255, 255, 255);
  background: linear-gradient(287deg, rgba(255, 255, 255, 1) 0%, rgba(243, 244, 244, 1) 0%, rgba(255, 255, 255, 1) 100%);
}

.login-form .login-top-wrap {
  /* display: flex; */
  /* justify-content: flex-end; */
  /* align-items: center; */
  width: 100%;
  margin-bottom: 30px;
}
.login-form .login-top-wrap span {
  color: gray;
  font-size: 11px;
  padding-right: 10px;
}

.login-input-container {
  width: 300px;
}
.login-input-container .login-input-wrap {
  width: 300px;
  height: 33px;
  margin-top: 8px;
  border-radius: 2px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-input-wrap span {
  margin-top: 10px;
  text-decoration: none;
  font-size: 10px;
  color: gray;
  display: block;
  text-align: center;
}

.login-input-container .login-input-wrap i {
  color: #2178ff;
  line-height: 45px;
  position: absolute;
  display: block;
  top: -6px;
  left: 28px;
}

.login-input-container .login-input-wrap input {
  background: none;
  line-height: 45px;
  padding-left: 30px;
  width: 260px;
  height: 33px;
  border-radius: 0;
  border: solid 1px #ccc;
}

input::placeholder {
  font-size: 10px;
}

.login-input-container .login-input-wrap input:focus {
  outline: none;
}

.login-btn-wrap {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.login-btn-wrap .login-btn {
  width: 260px;
  height: 35px;
  color: white;
  border: 0;
  border-radius: 4px;
  background: rgb(105, 163, 255);
  background: linear-gradient(162deg, rgba(105, 163, 255, 1) 0%, rgba(43, 125, 254, 1) 50%, rgba(43, 125, 254, 1) 100%);
}
.login-btn-wrap span {
  margin-top: 10px;
  text-decoration: none;
  font-size: 10px;
  color: gray;
}

/* 비밀번호 변경 안내 */

.login-form .pass-top-wrap {
  width: 100%;
  margin-bottom: 10px;
}

.login-form h6 {
  color: #333;
  font-size: 11px;
  font-weight: 400;
  width: 100%;
  display: inline-block;
  text-align: center;
}

.login-input-container .pass-input-wrap {
  width: 300px;
  height: 33px;
  margin-top: 5px;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.login-input-container .pass-input-wrap input {
  background: none;
  line-height: 45px;
  padding-left: 10px;
  width: 300px;
  height: 33px;
  border-radius: 0;
  border: solid 1px #ccc;
  margin-top: 8px;
}

.pass-input-wrap span {
  margin-top: 10px;
  text-decoration: none;
  font-size: 10px;
  color: gray;
  display: block;
  text-align: center;
}
