/* 전체 레イ아웃 */
body {
  font-family: Arial, sans-serif;
  background: #f5f5f5;
  margin: 0; padding: 0;
  display: flex; justify-content: center; align-items: flex-start;
  min-height: 100vh;
}

.container {
  background: #fff;
  width: 360px;
  margin: 40px 0;
  padding: 20px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  border-radius: 8px;
}

.banner img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* 폼 그룹 */
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
}

.form-group input {
  width: 100%;
  padding: 8px;
  box-sizing: border-box;
}

/* 개인정보 취급 방침 */
.privacy .policy-text {
  border: 1px solid #ccc;
  height: 100px;
  padding: 8px;
  overflow-y: scroll;
  background: #fafafa;
  margin-bottom: 8px;
}

/* css/style.css 에 추가 또는 수정 */
.policy-text {
  font-family: Arial, sans-serif; /* 폰트 통일 */
  font-size: 12px;      /* 글자 크기 조절 */
  line-height: 1.4;     /* 줄간격도 살짝 좁혀서 가독성 유지 */
}


.checkbox {
  display: inline-flex;
  align-items: center;
}

.checkbox input {
  margin: 0;
}

.checkbox label {
    margin-left: 6px;
    white-space: nowrap;
}

/* 버튼 */
button {
  width: 100%;
  padding: 12px;
  border: none;
  background: #0078d4;
  color: #fff;
  font-size: 16px;
  border-radius: 4px;
  cursor: pointer;
}

button:disabled {
  background: #aaa;
  cursor: not-allowed;
}
