.lp-form{
  max-width:420px;
  margin:0 auto;
}

.lp-input{
  width:100%;
  height:48px;
  padding:12px 14px;
  margin-bottom:6px;
  border:1px solid #ddd;
  border-radius:6px;
  font-size:14px;
  box-sizing:border-box;
}

.lp-input.error{
  border-color:#e74c3c;
}

.lp-submit-btn{
  width:100%;
  height:50px;
  background:#222;
  color:#fff;
  border:0;
  border-radius:6px;
  font-size:15px;
  cursor:pointer;
}

/* 에러 문구 */
.lp-field-error{
  display:none;
  font-size:13px;
  color:#e74c3c;
  margin-bottom:10px;
}

/* 날짜 placeholder */
.lp-date-wrap{ position:relative; }
.lp-date.is-empty{ color:transparent; }
.lp-date-placeholder{
  position:absolute;
  left:14px;
  top:50%;
  transform:translateY(-50%);
  color:#bbb;
  pointer-events:none;
}
.lp-date-wrap.has-value .lp-date-placeholder{ display:none; }

/* 개인정보 스크롤 영역 */
.lp-privacy{
  font-size:13px;
  margin:14px 0;
}
.lp-privacy label{
  display:flex;
  align-items:center;
  gap:6px;
}
.lp-privacy-text{
  max-height:80px; 
  overflow-y:auto;
  border:1px solid #ddd;
  padding:8px;
  margin-top:6px;
  font-size:12px;
  line-height:1.4;
  border-radius:6px;
  background:#fafafa;
}

/* 팝업 공통 (중앙 정렬) */
.lp-popup-bg{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.6);
  display: none;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.lp-popup{
  background: #fff;
  max-width:420px;
  width:100%;
  max-height:80vh;
  overflow-y:auto;
  padding:24px;
  border-radius:12px;
  text-align:center;
}
.lp-popup button{
  width:100%;
  height:44px;
  margin-top:20px;
  background:#222;
  color:#fff;
  border:0;
  border-radius:6px;
  cursor:pointer;
}
