@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap");

/* 전체 배경 및 폰트 설정 */
body {
  background: linear-gradient(135deg, #f8fafc 0%, #e0e7ff 100%);
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  margin: 0;
  padding: 0;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* 컨테이너 스타일 */
.container,
.landing-container {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 40px 32px 32px 32px;
  /* max-width: 400px; */
  width: 100%;
  text-align: center;
  margin: 60px auto 0 auto;
}

/* 제목 스타일 */
h1,
.landing-container h1 {
  font-size: 2.2rem;
  margin-bottom: 8px;
  color: #3730a3;
}

/* 부제목 스타일 */
.subtitle {
  color: #64748b;
  margin-bottom: 24px;
  font-size: 1.1rem;
}

/* 폼 입력 스타일 */
.listmonk-form input[type="email"],
.listmonk-form input[type="text"],
input[type="email"] {
  width: 90%;
  padding: 10px;
  border-radius: 6px;
  border: 1px solid #cbd5e1;
  margin-bottom: 16px;
  font-size: 1rem;
}

/* 제출 버튼 스타일 */
.listmonk-form input[type="submit"],
input[type="submit"] {
  background: #6366f1;
  color: #fff;
  border: none;
  border-radius: 6px;
  padding: 12px 0;
  width: 100%;
  font-size: 1.1rem;
  cursor: pointer;
  margin-top: 1em;
  transition: background 0.2s;
}

.listmonk-form input[type="submit"]:hover,
input[type="submit"]:hover {
  background: #4338ca;
}

/* 체크박스 그룹 */
.checkbox-group {
  text-align: left;
  margin: 0 0 1em 0;
  padding-left: 10px;
}
.checkbox-group label {
  margin-left: 6px;
  font-size: 0.98em;
}

/* 폼 제목 */
.listmonk-form h3 {
  margin-bottom: 16px;
  color: #3730a3;
}

/* 설명 텍스트 */
.landing-container p {
  color: #555;
  margin-bottom: 2em;
}

/* 푸터 */
.footer {
  margin-top: 32px;
  color: #94a3b8;
  font-size: 0.95rem;
}

/* 로고 이미지 */
.logo {
  max-width: 180px;
}

/* Style for the close button */
.button {
  display: inline-block;
  padding: 12px 32px;
  background: #6366f1; /* 기존 테마의 보라색 */
  color: #fff;
  border-radius: 8px; /* 컨테이너와 유사한 라운드 */
  text-decoration: none;
  font-weight: 700; /* 제목과 비슷한 굵기 */
  font-size: 1.05em;
  margin-top: 24px;
  transition: background 0.2s, box-shadow 0.2s;
  border: none;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(99, 102, 241, 0.08); /* 은은한 그림자 */
  letter-spacing: 0.02em;
}
.button:hover {
  background: #4338ca; /* hover 시 더 진한 보라색 */
  box-shadow: 0 4px 16px rgba(67, 56, 202, 0.12);
}
