.agree-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.circle-checkbox {
  position: relative;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}

.circle-checkbox input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.circle-checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--gray2);
  border-radius: 50%; /* 원형 */
  background-color: var(--white);
  background-image: none;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 12px 12px;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

/* 체크된 상태 */
.circle-checkbox input:checked ~ .checkmark {
  background-color: var(--red2);
  border-color: var(--red2);
  background-image: url('../assets/img/check-white.svg');
}

.badge-br-gray {
  border: 1px solid var(--gray);
  padding: 0.4rem 1rem;
}

/* sgn-01-02-1 */
.sale {
  background-color: var(--red);
  color: var(--white);
  padding: 0.5rem 1.5rem;
  border-radius: 2.8rem;
}

/* sgn-01-03-1 */
.phone-error-message,
.auth-error-message {
  color: #ff6b6b;
  font-size: 12px;
  margin-top: 5px;
}

.hidden {
  display: none;
}
