body {
  font-family: 'Noto Sans', sans-serif;

  margin: 0;
}
.form-wrapper {
  max-width: 640px;
  margin: auto;
  padding: 2em 1em;
}

.form-title {
  text-align: center;
  color: #17b4b1;
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.form-error-box {
  background: #ffe5e5;
  color: #b30000;
  padding: 1em;
  border-left: 5px solid #ff4d4d;
  margin: 1em 0 1.5em;
  text-align: center;
}

.tag-container {
  display: flex;
  gap: 0.5em;
  align-items: center;
  flex-wrap: wrap;
}

.tag-add-btn {
  background: #ccc;
  border: none;
  padding: 0.5em 1em;
  border-radius: 6px;
  font-weight: bold;
}

.submit-btn {
  margin-top: 1em;
  padding: 10px;
  background-color: #17b4b1;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  font-size: 1em;
}

.submit-btn:hover {
  background-color: #148f8d;
}

.form-wrapper {
  max-width: 640px;
  margin: auto;
  padding: 2em 1em;
  font-family: 'Noto Sans', sans-serif;
}

.form-block {
  display: flex;
  flex-direction: column;
  gap: 1.5em;
}

.form-block label {
  font-weight: bold;
  display: block;
  margin-bottom: 0.2em;
}

.form-control {
  width: 100%;
  box-sizing: border-box;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

.tag-container {
  display: flex;
  align-items: center;
  gap: 0.5em;
  flex-wrap: wrap;
}

.tag-container input {
  flex: 1;
}

.tag-add-btn {
  background: #ccc;
  border: none;
  padding: 0.5em 1em;
  border-radius: 6px;
  font-weight: bold;
  height: 40px;
  min-width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.submit-btn {
  padding: 12px;
  width: 100%;
  background-color: #17b4b1;
  color: #fff;
  font-weight: bold;
  border: none;
  border-radius: 6px;
  font-size: 1em;
}

.submit-btn:hover {
  background-color: #148f8d;
}

.gender-options {
  display: flex;
  gap: 1em;
  align-items: center;
  margin-bottom: 1em;
}

.gender-label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.2em;
}

.tag-add-btn:hover {
  background: #17b4b1;
  cursor: pointer;
  color: #fff;
}

.site-header {
  background: #17b4b1;
  border-bottom: 1px solid #ddd;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1000px;
  margin: auto;
}

.site-logo img {
  height: 40px;
}

.main-nav ul {
  display: flex;
  gap: 1.5em;
  list-style: none;
  margin: 0;
  padding: 0;
  font-weight: bold;
}

.main-nav ul li a {
  text-decoration: none;
  color: #333;
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 1001;
}

.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 70%;
  height: 100vh;
  background: #17b4b1;
  transition: right 0.3s ease;
  z-index: 999;
  padding-top: 80px;
  box-shadow: -4px 0 8px rgba(0,0,0,0.2);
  flex-direction: column;
  gap: 1em;
}

.mobile-nav.open {
  right: 0;
}

@media (max-width: 768px) {
  .main-nav ul {
    display: none;
  }
  .hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 1001;
}
}


input, textarea {
  font-size: 16px; /* iOS zoom prevention */
}

@media (max-width: 768px) {
  html {
    touch-action: manipulation;
  }
}

.hamburger span {
  display: block;
  height: 3px;
  width: 28px;
  background: #fff;
  border-radius: 2px;
  margin: 5px auto;
  transition: all 0.3s ease-in-out;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

.content-wrap{
  max-width:1200px;
  margin:auto;
  padding:2em 1em;
}