/*-- OBPAY(OneB) 지갑 연동 팝업 (모바일) --*/

/* .ngdialog-deposit .ngdialog__content 의 padding:0 을 이 팝업에서만 해제 */
.ngdialog-deposit.oneb-binding .ngdialog__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 15px;
}

.oneb-binding .oneb-step {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 15px;
}

.oneb-binding fieldset {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  gap: 6px;
}

.oneb-binding fieldset > label {
  margin: 0;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 4px;
}

/* 다크 배경에서 식별되도록 필수 표시를 밝게 */
.oneb-binding .asterisk-red {
  color: #e2555c;
}

.oneb-binding .side-note {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.5;
  color: #999999;
}

/* 모바일 전역 .form-control 은 color:#555555 (배경 #111111 과 대비 부족).
   생년월일·계좌번호·인증번호는 입력값 확인이 필요해 이 팝업에서만 밝게 처리 */
.oneb-binding .form-control {
  color: #FFFFFF;
}

/*-- 등록 휴대폰번호 (입력칸 아님) --*/

.oneb-binding .oneb-phone {
  height: 40px;
  padding: 0 12px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 8px;
  background: #111111;
  border: 1px solid #555555;
  font-family: 'GmarketSans', 'Noto Sans KR', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: #FFFFFF;
}

.oneb-binding .oneb-phone i {
  font-size: 18px;
  color: #c8a45a;
}

/*-- 성별 / 통신사 선택 --*/

.oneb-binding .oneb-pills {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  gap: 6px;
}

.oneb-binding .oneb-pill {
  flex: 1 1 0;
  height: 40px;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #111111;
  border: 1px solid #555555;
  font-family: 'GmarketSans', 'Noto Sans KR', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #888888;
}

.oneb-binding .oneb-pill input[type="radio"] {
  position: absolute;
  left: -9999px;
  margin: 0;
}

.oneb-binding .oneb-pill.active {
  background: #c8a45a;
  border-color: #c8a45a;
  color: #FFFFFF;
}

/*-- 인증번호 입력 --*/

.oneb-binding .form-control.oneb-code {
  height: 52px;
  padding-left: 10px;
  text-align: center;
  font-size: 22px;
  letter-spacing: 10px;
}

.oneb-binding .form-control.oneb-code::placeholder {
  letter-spacing: 10px;
  color: #444444;
}

/*-- 안내 문구 --*/

.oneb-binding .oneb-notice {
  padding: 12px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 8px;
  background: rgba(200, 164, 90, .1);
  border-left: 3px solid #c8a45a;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.6;
  color: #d9bc82;
}

.oneb-binding .oneb-notice i {
  margin-top: 2px;
  font-size: 14px;
  color: #c8a45a;
}

/*-- 로딩 --*/

.oneb-binding .oneb-loading {
  padding: 40px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  color: #888888;
}

.oneb-binding .oneb-loading i {
  font-size: 28px;
  color: #c8a45a;
}

/*-- 버튼 --*/

.oneb-binding .oneb-submit {
  padding-top: 5px;
}

.oneb-binding .btn.btn-primary {
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
}

.oneb-binding .btn.btn-ghost {
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: transparent;
  border: 1px solid #555555;
  border-radius: 0;
  font-family: 'GmarketSans', 'Noto Sans KR', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #999999;
}

.oneb-binding .btn.btn-ghost:hover,
.oneb-binding .btn.btn-ghost:focus,
.oneb-binding .btn.btn-ghost:active {
  background: transparent;
  border-color: #c8a45a;
  color: #c8a45a;
}

.oneb-binding .btn[disabled],
.oneb-binding .btn[disabled]:hover {
  opacity: 0.5;
}
