
/* 로그인 페이지 */
.loginFrame {
  width: 100%;
  height: 100vh;
  background-color: #00A79E;
}

.loginFrameInner {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 로그인 박스 */
.loginBox {
  padding: 30px;
  gap: 20px;
  background-color: #fff;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}

.loginLogo {
  width: 400px;
}

.loginList {
  width: 75%;
}

.loginId, .loginPw {
  display: flex;
  flex-direction: column;
  gap: 5px
}

.loginList p {
  color: #0C3274;
  font-size: 14px;
  font-weight: 600;
}

/* 로그인 아이디 */
.loginId {
  margin: 0 0 15px 0;
}

.loginId input {
  width: 100%;
  height: 35px;
  background-color: #F7F7F7;
  border: 1px solid #B1B1B1;
  padding: 5px;
  font-family: 'Noto Sans KR'; 
}

/* 로그인 비밀번호 */
.loginPw > div {
  display: flex;
}
.loginPw input {
  width: 90%;
  height: 35px;
  background-color: #F7F7F7;
  border-top: 1px solid #B1B1B1;
  border-left: 1px solid #B1B1B1;
  border-bottom: 1px solid #B1B1B1;
  border-right: 0;
  padding: 5px;
  font-family: 'Noto Sans KR'; 
}
.loginPw .eyeBox {
  width: 10%;
  height: 35px;
  background-color: #F7F7F7;
  border-top: 1px solid #B1B1B1;
  border-right: 1px solid #B1B1B1;
  border-bottom: 1px solid #B1B1B1;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #777;
  cursor: pointer;
}
.eyeBox .xi-eye-o {
  display: none;
}

.loginCheck {
  margin: 15px 0 20px 0;
}
.loginCheck > p {
  visibility: hidden;
  text-align: center;
}

/* Caps Lock 활성화 */
.capsLockWarning::before {
  position: absolute;
  top: 11px;
  left: -4px;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: #ffff9f;
  transform: rotate(45deg);
}
.capsLockWarning {
  display: none;
  position: absolute;
  right: -170px;
  background-color: #ffff9f;
  font-size: 14px;
  padding: 5px 15px;
  border-radius: 12px;
  font-weight: 500;
  color: #111;
}

/* 로그인 버튼 */
.loginBtn {
  width: 100%;
  height: 35px;
  line-height: 35px;
  background-color: #00A79E;
  border: 0;
  color: #fff;
  font-family: 'Noto Sans KR';
  font-weight: 600;
  cursor: pointer;
  font-size: 15px;
  text-align: center;
}