/* =============================================================================
 * Staging Login 스타일 (companyLogin 동일)
 * ============================================================================= */

/* Verdana 폰트 적용 (companyLogin 동일) */
.login-modal-wrap,
.login-modal-wrap input,
.login-modal-wrap button {
  font-family: MyEnglishFont, MyKoreanFont, sans-serif;
}

.staging-badge {
  background: #ff6b6b;
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 12px;
  margin-left: 10px;
}

.error-message {
  color: rgb(204, 0, 0);
  font-size: 11px;
  margin-top: 3px;
  display: none;
  text-align: left;
  font-weight: 700;
  line-height: 14px;
}

/* Parsley 에러 스타일 (companyLogin 동일) */
.parsley-errors-list {
  list-style: none;
  padding: 0;
  margin: 3px 0 0 0;
  color: rgb(204, 0, 0);
  font-size: 11px;
  font-weight: 700;
  line-height: 14px;
}

.parsley-errors-list li {
  margin: 0;
}

/* Parsley 에러 시 input border 빨간색 */
.login-input-wrap:has(input.parsley-error) {
  border-color: #cc0000;
}

/* 로그인 모달 스타일 */
.login-modal-wrap {
  background-color: #fff;
  width: 534px;
}

.login-modal-header {
  border-top: 2px solid #d0d0d0;
  border-left: 2px solid #d0d0d0;
  border-right: 2px solid #d0d0d0;
  padding: 15px 30px;
}

.login-modal-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 28px;
}

.login-modal-body {
  border-top: 2px solid #d0d0d0;
  border-left: 2px solid #d0d0d0;
  border-bottom: 2px solid #d0d0d0;
  border-right: 2px solid #d0d0d0;
  padding: 30px 15px 40px;
  background-color: #fff;
}

.login-box-wrap {
  margin: 10px 15px 15px;
}

.login-form-grid {
  display: grid;
  grid-template-columns: 320px 150px;
  grid-gap: 0;
}

.login-input-wrap {
  height: 36px;
  border: 1px solid #dbdbdb;
}

.login-input-wrap.no-bottom {
  border-bottom: none;
}

.login-input-wrap input,
.login-input-wrap .password-toggle-wrap input {
  background-color: #fff !important;
  border: none;
  width: 100%;
  height: 100%;
  font-size: 14px !important;
  outline: none;
  padding: 1px 10px;
  box-sizing: border-box;
}

/* Edge 브라우저 기본 비밀번호 보기 아이콘 비활성화 */
.login-input-wrap input[type="password"]::-ms-reveal,
.login-input-wrap input[type="password"]::-ms-clear {
  display: none !important;
}

/* Password Toggle - login-input-wrap 내부 스타일 */
.login-input-wrap .password-toggle-wrap {
  position: relative;
  width: 100%;
  height: 100%;
}
.login-input-wrap .password-toggle-btn {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}

/* Chrome autofill 배경색 제거 */
.login-input-wrap input:-webkit-autofill,
.login-input-wrap input:-webkit-autofill:hover,
.login-input-wrap input:-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: #000 !important;
}

.login-btn {
  background-color: #ff5200;
  color: #fff;
  border: none;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 72px;
}

.login-btn:hover {
  background-color: rgb(164, 16, 52);
  color: #fff;
}

.login-btn:active {
  background-color: rgb(164, 16, 52);
  color: rgb(241, 177, 186);
}

