/* guest-pages.css - html에 배경 붙이기 (완전 초기화) */

/* ★ html 요소에 배경 - 뷰포트 그 자체라 절대 잘리지 않음 */
html {
  background-image:
    linear-gradient(rgba(8, 24, 50, 0.32), rgba(8, 24, 50, 0.32)),
    url('/static/images/login/login-fullbg.jpg');
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-color: #0a2545;
  min-height: 100vh;
}

/* body는 투명 - html 배경이 관통해서 보임 */
body:not(.home-page):not(.buyer-shell) {
  background: transparent !important;
  min-height: 100vh;
  color: #e8ecf1;
}

body:not(.home-page):not(.buyer-shell) > .app-header {
  background: rgba(15, 25, 45, 0.42);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
body:not(.home-page):not(.buyer-shell) .site-name.site-name-app {
  color: #fff;
  font-weight: 800;
  letter-spacing: 1.5px;
}
body:not(.home-page):not(.buyer-shell) > main { padding: 40px 20px 60px; }

body:not(.home-page):not(.buyer-shell) .form-card,
body:not(.home-page):not(.buyer-shell) .access-pass-card {
  background: rgba(21, 36, 64, 0.58);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  box-shadow: 0 24px 64px -20px rgba(0, 0, 0, 0.55);
  border-radius: 18px;
  padding: 32px 40px;
  max-width: 720px;
  margin: 0 auto;
}
body:not(.home-page):not(.buyer-shell) .form-card h1,
body:not(.home-page):not(.buyer-shell) .form-card h2,
body:not(.home-page):not(.buyer-shell) .form-card h3 { color: #fff; }
body:not(.home-page):not(.buyer-shell) .form-card .form-sub,
body:not(.home-page):not(.buyer-shell) .form-card p { color: rgba(255, 255, 255, 0.78); }
body:not(.home-page):not(.buyer-shell) .form-card label { color: rgba(255, 255, 255, 0.9); }
body:not(.home-page):not(.buyer-shell) .form-card input:not([type="checkbox"]):not([type="radio"]),
body:not(.home-page):not(.buyer-shell) .form-card textarea,
body:not(.home-page):not(.buyer-shell) .form-card select {
  background: rgba(255, 255, 255, 0.94);
  color: #0a2545;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

body:not(.home-page):not(.buyer-shell) > .app-footer {
  background: transparent;
  color: rgba(255, 255, 255, 0.88);
  padding: 20px;
  text-align: center;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

body:not(.home-page):not(.buyer-shell) section.placeholder {
  background: rgba(21, 36, 64, 0.58);
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  border-radius: 18px;
  max-width: 560px;
  margin: 40px auto;
  padding: 60px 40px;
  text-align: center;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 60px -20px rgba(0, 0, 0, 0.5);
}
/* ═══ input 필드 어두운 반투명 톤 (배경과 어울리게) ═══ */
body:not(.home-page):not(.buyer-shell) .form-card input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
body:not(.home-page):not(.buyer-shell) .form-card textarea,
body:not(.home-page):not(.buyer-shell) .form-card select,
body:not(.home-page):not(.buyer-shell) .access-pass-card input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
body:not(.home-page):not(.buyer-shell) .access-pass-card textarea,
body:not(.home-page):not(.buyer-shell) .access-pass-card select {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.18) !important;
  padding: 12px 14px !important;
  border-radius: 8px !important;
  transition: all 0.2s ease !important;
}

body:not(.home-page):not(.buyer-shell) .form-card input:focus,
body:not(.home-page):not(.buyer-shell) .form-card textarea:focus,
body:not(.home-page):not(.buyer-shell) .form-card select:focus,
body:not(.home-page):not(.buyer-shell) .access-pass-card input:focus,
body:not(.home-page):not(.buyer-shell) .access-pass-card textarea:focus {
  background: rgba(255, 255, 255, 0.13) !important;
  border-color: rgba(103, 232, 249, 0.55) !important;
  box-shadow: 0 0 0 3px rgba(103, 232, 249, 0.15) !important;
  outline: none !important;
}

body:not(.home-page):not(.buyer-shell) .form-card input::placeholder,
body:not(.home-page):not(.buyer-shell) .form-card textarea::placeholder,
body:not(.home-page):not(.buyer-shell) .access-pass-card input::placeholder,
body:not(.home-page):not(.buyer-shell) .access-pass-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.38) !important;
}

/* 인증/검색 등 secondary 버튼 - 반투명 유리 */
body:not(.home-page):not(.buyer-shell) .form-card button:not(.btn-submit):not([class*="btn-primary"]):not(.btn-brand),
body:not(.home-page):not(.buyer-shell) .form-card a.btn:not(.btn-submit):not([class*="btn-primary"]):not(.btn-brand),
body:not(.home-page):not(.buyer-shell) .access-pass-card button:not(.btn-submit):not([class*="btn-primary"]):not(.btn-brand) {
  background: rgba(255, 255, 255, 0.10) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  padding: 11px 18px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: all 0.2s ease !important;
}
body:not(.home-page):not(.buyer-shell) .form-card button:not(.btn-submit):not([class*="btn-primary"]):hover,
body:not(.home-page):not(.buyer-shell) .form-card a.btn:not(.btn-submit):not([class*="btn-primary"]):hover {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.35) !important;
  transform: translateY(-1px);
}

/* 파일 업로드 박스 */
body:not(.home-page):not(.buyer-shell) .form-card .file-drop,
body:not(.home-page):not(.buyer-shell) .form-card [class*="file-upload"],
body:not(.home-page):not(.buyer-shell) .form-card .drop-zone {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1.5px dashed rgba(255, 255, 255, 0.25) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  border-radius: 10px !important;
}

/* warn-box, alert-error - 반투명 톤 */
body:not(.home-page):not(.buyer-shell) .form-card .warn-box,
body:not(.home-page):not(.buyer-shell) .form-card .alert-error {
  background: rgba(220, 38, 38, 0.15) !important;
  border: 1px solid rgba(248, 113, 113, 0.35) !important;
  color: #fecaca !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
}

/* 승인 유효시간 안내 등 info-box */
body:not(.home-page):not(.buyer-shell) .form-card .info-box,
body:not(.home-page):not(.buyer-shell) .form-card [class*="notice"] {
  background: rgba(59, 130, 246, 0.12) !important;
  border: 1px solid rgba(96, 165, 250, 0.3) !important;
  color: rgba(191, 219, 254, 0.95) !important;
  border-radius: 10px !important;
  padding: 12px 16px !important;
}

/* ═══ 파일 첨부 박스 (.file-drop-zone) 다크 반투명 통일 ═══ */
body:not(.home-page):not(.buyer-shell) .form-card .file-drop-zone {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1.5px dashed rgba(255, 255, 255, 0.25) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  border-radius: 12px !important;
  padding: 28px 20px !important;
  text-align: center !important;
  transition: all 0.2s ease;
}
body:not(.home-page):not(.buyer-shell) .form-card .file-drop-zone:hover {
  background: rgba(255, 255, 255, 0.08) !important;
  border-color: rgba(103, 232, 249, 0.4) !important;
}

body:not(.home-page):not(.buyer-shell) .form-card .file-drop-hint {
  color: rgba(255, 255, 255, 0.6) !important;
  margin-bottom: 12px;
  font-size: 15px;
}

body:not(.home-page):not(.buyer-shell) .form-card .btn-outline {
  background: rgba(255, 255, 255, 0.10) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  cursor: pointer;
  transition: all 0.2s ease;
}
body:not(.home-page):not(.buyer-shell) .form-card .btn-outline:hover {
  background: rgba(255, 255, 255, 0.20) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  transform: translateY(-1px);
}

body:not(.home-page):not(.buyer-shell) .form-card .license-required-hint {
  color: #fca5a5 !important;
  font-size: 14px;
  margin-top: 10px;
}

body:not(.home-page):not(.buyer-shell) .form-card .license-file-info {
  color: rgba(255, 255, 255, 0.85) !important;
  margin-top: 8px;
}

/* ═══ 모달 (입점업체 검색, 이용 동의사항 등) 다크 반투명 유리 ═══ */
dialog.register-modal,
body:not(.home-page):not(.buyer-shell) dialog {
  background: rgba(15, 25, 45, 0.96) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
  border-radius: 14px !important;
  box-shadow: 0 24px 64px -20px rgba(0, 0, 0, 0.7) !important;
  padding: 24px !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

dialog.register-modal::backdrop,
body:not(.home-page):not(.buyer-shell) dialog::backdrop {
  background: rgba(0, 0, 0, 0.55) !important;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

/* 모달 안 헤더·본문 */
dialog.register-modal h1,
dialog.register-modal h2,
dialog.register-modal h3,
dialog.register-modal h4 { color: #fff !important; }

dialog.register-modal p,
dialog.register-modal li,
dialog.register-modal ol li,
dialog.register-modal ul li {
  color: rgba(255, 255, 255, 0.85) !important;
  line-height: 1.7;
}
dialog.register-modal label {
  color: rgba(255, 255, 255, 0.92) !important;
}

/* 모달 안 input */
dialog.register-modal input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
dialog.register-modal textarea,
dialog.register-modal select {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  padding: 10px 14px !important;
  border-radius: 8px !important;
}
dialog.register-modal input:focus {
  background: rgba(255, 255, 255, 0.13) !important;
  border-color: rgba(103, 232, 249, 0.55) !important;
  box-shadow: 0 0 0 3px rgba(103, 232, 249, 0.15) !important;
  outline: none !important;
}
dialog.register-modal input::placeholder {
  color: rgba(255, 255, 255, 0.38) !important;
}

/* 검색·닫기 등 secondary 버튼 */
dialog.register-modal button:not([type="submit"]):not(.btn-submit):not(.btn-primary) {
  background: rgba(255, 255, 255, 0.10) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  padding: 9px 18px !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  cursor: pointer;
  transition: all 0.2s ease;
}
dialog.register-modal button:not([type="submit"]):hover {
  background: rgba(255, 255, 255, 0.20) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  transform: translateY(-1px);
}

/* 모달 상단 X 버튼 */
dialog.register-modal button[aria-label*="닫"],
dialog.register-modal .modal-close,
dialog.register-modal .close-btn {
  background: transparent !important;
  border: none !important;
  color: rgba(255, 255, 255, 0.6) !important;
  font-size: 1.4em;
  padding: 4px !important;
}
dialog.register-modal button[aria-label*="닫"]:hover,
dialog.register-modal .modal-close:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1) !important;
  border-radius: 6px !important;
}

/* 테이블 헤더 (업체명·구역·입점번호) */
dialog.register-modal table {
  color: #fff !important;
  width: 100%;
  border-collapse: collapse;
}
dialog.register-modal table th {
  color: rgba(255, 255, 255, 0.75) !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15) !important;
  padding: 12px 10px !important;
  text-align: left;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
dialog.register-modal table td {
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 12px 10px !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08) !important;
}
dialog.register-modal table tr:hover td {
  background: rgba(255, 255, 255, 0.05) !important;
}

/* 체크박스 */
dialog.register-modal input[type="checkbox"] {
  accent-color: #10b981;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  vertical-align: middle;
}

/* ═══ 모달 X 버튼 (.modal-close) 작게 + 투명 ═══ */
dialog.register-modal .modal-close {
  background: transparent !important;
  border: none !important;
  color: rgba(255, 255, 255, 0.65) !important;
  font-size: 24px !important;
  line-height: 1 !important;
  padding: 6px 10px !important;
  width: auto !important;
  height: auto !important;
  cursor: pointer;
  border-radius: 6px !important;
  transition: all 0.15s ease;
  font-weight: 400 !important;
}
dialog.register-modal .modal-close:hover {
  color: #fff !important;
  background: rgba(255, 255, 255, 0.1) !important;
  transform: none !important;
}

dialog.register-modal .modal-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 16px;
}

/* 모달 안 검색·주요 버튼 (.btn-primary) - 그린 CTA */
dialog.register-modal .btn-primary,
dialog.register-modal button.btn-primary {
  background: linear-gradient(135deg, #10b981 0%, #047857 100%) !important;
  color: #fff !important;
  border: none !important;
  padding: 10px 22px !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  cursor: pointer;
  box-shadow: 0 4px 12px -4px rgba(4, 120, 87, 0.55);
  transition: all 0.2s ease;
}
dialog.register-modal .btn-primary:hover,
dialog.register-modal button.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 20px -6px rgba(4, 120, 87, 0.7);
}

/* 모달 검색 input + 검색 버튼 행 */
dialog.register-modal .modal-search-row {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 16px;
}
dialog.register-modal .modal-search-row input {
  flex: 1;
}

/* 모달 하단 버튼 영역 */
dialog.register-modal .modal-actions {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 동의 체크박스 라벨 */
dialog.register-modal .agree-check {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.9) !important;
  cursor: pointer;
  font-weight: 500;
}

/* ═══ access-pass-public.css의 흰색 override 강제 ═══ */
body:not(.home-page):not(.buyer-shell) .access-pass-card,
.access-pass-card {
  background: rgba(21, 36, 64, 0.58) !important;
  backdrop-filter: blur(16px) saturate(130%);
  -webkit-backdrop-filter: blur(16px) saturate(130%);
  border: 1px solid rgba(255, 255, 255, 0.12) !important;
  color: #fff !important;
  box-shadow: 0 24px 64px -20px rgba(0, 0, 0, 0.55) !important;
  border-radius: 18px !important;
  padding: 32px 40px !important;
}

.access-pass-card h1,
.access-pass-card h2,
.access-pass-card h3 { color: #fff !important; }

.access-pass-card p,
.access-pass-card .form-sub { color: rgba(255, 255, 255, 0.78) !important; }

.access-pass-card label { color: rgba(255, 255, 255, 0.9) !important; }

.access-pass-card input:not([type="checkbox"]):not([type="radio"]):not([type="file"]),
.access-pass-card textarea,
.access-pass-card select {
  background: rgba(255, 255, 255, 0.08) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.22) !important;
  border-radius: 8px !important;
}

.access-pass-card input:focus,
.access-pass-card textarea:focus,
.access-pass-card select:focus {
  background: rgba(255, 255, 255, 0.13) !important;
  border-color: rgba(103, 232, 249, 0.55) !important;
  outline: none !important;
}

/* 스텝 버튼 (1.입점업체 · 2.신청자 · 3.첨부·동의) */
.access-pass-steps span {
  background: rgba(255, 255, 255, 0.08) !important;
  color: rgba(255, 255, 255, 0.7) !important;
  border: 1px solid rgba(255, 255, 255, 0.15) !important;
}
.access-pass-steps span.is-on {
  background: linear-gradient(135deg, #10b981 0%, #047857 100%) !important;
  color: #fff !important;
  border: none !important;
}

/* 유효시간 안내 파란 박스 */
.access-pass-valid-hint {
  background: rgba(59, 130, 246, 0.12) !important;
  border: 1px solid rgba(96, 165, 250, 0.3) !important;
  color: rgba(191, 219, 254, 0.95) !important;
  border-radius: 10px !important;
}

/* 신분증 첨부 박스 */
.access-pass-upload {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1.5px dashed rgba(255, 255, 255, 0.25) !important;
}

/* 보안 동의사항 노란 박스 */
.access-pass-agree,
.access-pass-card [class*="agree"] {
  background: rgba(251, 191, 36, 0.10) !important;
  border: 1px solid rgba(251, 191, 36, 0.28) !important;
  color: rgba(254, 240, 138, 0.95) !important;
  border-radius: 10px !important;
}

/* 검색하기 · 확인 등 outline 버튼 */
.access-pass-card .btn-outline,
.access-pass-card button.btn-outline {
  background: rgba(255, 255, 255, 0.10) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 8px !important;
}

/* 뒤로가기 (← 로그인) */
.access-pass-back { color: #67e8f9 !important; }
.access-pass-back:hover { color: #a5f3fc !important; }

/* ═══ 메인 CTA 버튼 (확인·조회·등록 신청 등) 리디자인 ═══ */
body:not(.home-page):not(.buyer-shell) .btn-submit,
body:not(.home-page):not(.buyer-shell) .form-card .btn-submit,
body:not(.home-page):not(.buyer-shell) .access-pass-card .btn-submit {
  height: 52px !important;
  background: linear-gradient(160deg, #14b8a6 0%, #0d9488 45%, #067a5e 100%) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 12px !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 10px 26px -10px rgba(13, 148, 136, 0.6) !important;
  transition: all 0.2s ease !important;
}
body:not(.home-page):not(.buyer-shell) .btn-submit:hover:not(:disabled) {
  filter: brightness(1.08);
  transform: translateY(-1px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.3),
    0 14px 30px -10px rgba(13, 148, 136, 0.75) !important;
}
body:not(.home-page):not(.buyer-shell) .btn-submit:active:not(:disabled) {
  transform: translateY(0);
  filter: brightness(0.97);
}

/* ═══ placeholder(이용 불가 등) 제목·본문 밸런스 ═══ */
body:not(.home-page):not(.buyer-shell) section.placeholder h1 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.5px;
  margin: 0 0 10px;
}
body:not(.home-page):not(.buyer-shell) section.placeholder p {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.82);
  margin: 0 0 14px;
}

/* ═══ placeholder(이용 불가 등) 안 링크 - 기본 파랑 대신 시안 ═══ */
body:not(.home-page):not(.buyer-shell) section.placeholder a {
  color: #67e8f9 !important;
  text-decoration: none;
  font-weight: 600;
}
body:not(.home-page):not(.buyer-shell) section.placeholder a:hover {
  color: #a5f3fc !important;
  text-decoration: underline;
}

/* ═══ check 페이지 하단 흰색 버튼 → 반투명 유리 통일 ═══ */
.access-pass-card .ds-btn--secondary,
.access-pass-check-links .ds-btn--secondary,
.access-pass-check-card__actions .ds-btn--secondary {
  background: rgba(255, 255, 255, 0.10) !important;
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 8px !important;
  font-weight: 600 !important;
  transition: all 0.2s ease;
}
.access-pass-card .ds-btn--secondary:hover,
.access-pass-check-links .ds-btn--secondary:hover,
.access-pass-check-card__actions .ds-btn--secondary:hover {
  background: rgba(255, 255, 255, 0.18) !important;
  border-color: rgba(255, 255, 255, 0.4) !important;
  transform: translateY(-1px);
}

/* ═══ 입력 도움말(.help, .form-hint) 가독성 ═══ */
body:not(.home-page):not(.buyer-shell) .form-card .help,
body:not(.home-page):not(.buyer-shell) .form-card .form-hint {
  color: rgba(255, 255, 255, 0.62) !important;
  font-size: 12px;
  line-height: 1.5;
}

/* ═══ 셀렉트 옵션 목록 — 흰 팝업에 흰 글씨 방지 ═══ */
body:not(.home-page):not(.buyer-shell) select,
.access-pass-card select {
  color: #fff;
}
body:not(.home-page):not(.buyer-shell) select option,
.access-pass-card select option {
  background: #ffffff;
  color: #0f172a;
}

/* ═══ 입점업체 선택 결과 박스 — 다크 유리 통일 ═══ */
body:not(.home-page):not(.buyer-shell) .tenant-selected-wrap,
.access-pass-card .tenant-selected-wrap {
  background: rgba(255, 255, 255, 0.10) !important;
  border: 1px solid rgba(255, 255, 255, 0.25) !important;
  border-radius: 10px !important;
  padding: 12px 14px !important;
  align-items: center;
  gap: 10px;
}
body:not(.home-page):not(.buyer-shell) .tenant-selected-label,
.access-pass-card .tenant-selected-label {
  color: #9fe1cb !important;
  font-weight: 700;
}

/* ═══ 자동입력 정보 박스 — 다크 유리 통일 ═══ */
body:not(.home-page):not(.buyer-shell) .form-card .ds-auto-block,
.access-pass-card .ds-auto-block {
  background: rgba(255, 255, 255, 0.07) !important;
  border: 1px solid rgba(255, 255, 255, 0.16) !important;
  border-radius: 10px !important;
  color: #fff !important;
}
body:not(.home-page):not(.buyer-shell) .form-card .ds-auto-block h4,
.access-pass-card .ds-auto-block h4 {
  color: #fff !important;
}
body:not(.home-page):not(.buyer-shell) .form-card .ds-auto-row .k,
.access-pass-card .ds-auto-row .k {
  color: rgba(255, 255, 255, 0.6) !important;
}
body:not(.home-page):not(.buyer-shell) .form-card .ds-auto-row .v,
.access-pass-card .ds-auto-row .v {
  color: #fff !important;
}
