/* SubscribeForm styles */
.tc-subscribe {
  border-radius: 16px;
  padding: 36px 24px 40px;
  color: #fff;
  text-align: center;
  max-width: 420px;
  margin: 0 auto;
}

.tc-sub-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 10px;
  color: #fff;
}

.tc-sub-desc {
  font-size: 0.95rem;
  line-height: 1.5;
  margin: 0 0 24px;
  color: #f3f3f3;
}

.tc-subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}

.tc-subscribe-form input[type="text"],
.tc-subscribe-form input[type="email"] {
  width: 100%;
  max-width: 320px;
  padding: 12px 18px;
  border: none;
  border-radius: 50px;
  font-size: 0.95rem;
  text-align: center;
  color: #333;
  background: #fff;
  outline: none;
  transition: all 0.25s ease;
}

.tc-subscribe-form input[type="text"]:focus,
.tc-subscribe-form input[type="email"]:focus {
  box-shadow: 0 0 0 3px rgba(231, 140, 133, 0.35);
}

.tc-sub-privacy {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
  font-size: 0.85rem;
  color: #f3f3f3;
}

.tc-sub-privacy input[type="checkbox"] {
  width: 16px;
  height: 16px;
  accent-color: #E78C85;
  cursor: pointer;
}

.tc-sub-btn {
  background-color: #E78C85;
  color: #fff;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid #E78C85;
  border-radius: 30px;
  padding: 12px 32px;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 8px rgba(231, 140, 133, 0.25);
  margin-top: 6px;
}

.tc-sub-btn:hover {
  background-color: #fff;
  color: #E78C85;
  box-shadow: 0 4px 10px rgba(231, 140, 133, 0.3);
}

@media (max-width: 600px) {
  .tc-subscribe {
    padding: 28px 16px 32px;
  }
  .tc-subscribe-form input {
    max-width: 100%;
  }
}
