.sms-signup-page {
  min-height: 100vh;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4efe9 100%);
  padding: 40px 20px;
}

.signup-header {
  text-align: center;
  margin-bottom: 50px;
}

.signup-header h1 {
  font-size: 2.5rem;
  color: #1a5e20;
  margin-bottom: 15px;
}

.signup-header .subtitle {
  font-size: 1.2rem;
  color: #5a7d63;
  max-width: 700px;
  margin: 0 auto;
}

.signup-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.signup-form-section,
.signup-info-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.form-card,
.info-card {
  background: white;
  border-radius: 12px;
  padding: 35px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.form-card h2,
.info-card h2 {
  font-size: 1.5rem;
  color: #1a5e20;
  margin-bottom: 20px;
}

.form-description {
  color: #666;
  margin-bottom: 25px;
  line-height: 1.6;
}

.signup-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-group label {
  font-weight: 600;
  color: #333;
  font-size: 0.95rem;
}

.form-group input[type="tel"] {
  padding: 14px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input[type="tel"]:focus {
  outline: none;
  border-color: #4a7c4f;
  box-shadow: 0 0 0 3px rgba(74, 124, 79, 0.1);
}

.form-hint {
  font-size: 0.85rem;
  color: #888;
  margin-top: -4px;
}

.consent-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-top: 10px;
}

.consent-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-top: 2px;
  cursor: pointer;
  accent-color: #4a7c4f;
}

.consent-checkbox label {
  font-size: 0.85rem;
  line-height: 1.6;
  color: #555;
  cursor: pointer;
}

.submit-btn {
  background: linear-gradient(135deg, #4a7c4f 0%, #355639 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  margin-top: 10px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(74, 124, 79, 0.4);
}

.submit-btn:active {
  transform: translateY(0);
}

.compliance-disclosure {
  margin-top: 25px;
  padding-top: 20px;
  border-top: 2px solid #e0e0e0;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
  font-size: 0.85rem;
}

.compliance-disclosure p {
  margin: 8px 0;
  color: #555;
  line-height: 1.5;
}

.compliance-disclosure strong {
  color: #1a5e20;
  font-weight: 600;
}

.compliance-disclosure .compliance-list {
  list-style: disc;
  padding-left: 25px;
  margin: 15px 0;
}

.compliance-disclosure .compliance-list li {
  margin: 10px 0;
  line-height: 1.5;
  color: #555;
  font-size: 0.85rem;
}

.compliance-disclosure .compliance-list li strong {
  color: #1a5e20;
  font-weight: 600;
}

.compliance-disclosure .legal-links {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #ddd;
}

.success-message {
  text-align: center;
  padding: 20px;
}

.checkmark-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  position: relative;
}

.checkmark {
  width: 80px;
  height: 80px;
}

.checkmark__circle {
  stroke: #4a7c4f;
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.checkmark__check {
  transform-origin: 50% 50%;
  stroke: #4a7c4f;
  stroke-width: 3;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0.4s forwards;
}

@keyframes stroke {
  100% {
    stroke-dashoffset: 0;
  }
}

.success-message h3 {
  font-size: 1.8rem;
  color: #1a5e20;
  margin-bottom: 10px;
}

.success-message p {
  color: #555;
  line-height: 1.6;
  margin-bottom: 10px;
}

.confirmation-text {
  font-weight: 500;
  color: #4a7c4f;
}

.benefits-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.benefits-list li {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 15px 0;
  border-bottom: 1px solid #eee;
}

.benefits-list li:last-child {
  border-bottom: none;
}

.benefit-icon {
  font-size: 2rem;
  flex-shrink: 0;
  margin-top: 25px;
  margin-right: 15px;
}

.benefit-text h3 {
  font-size: 1rem;
  color: #333;
  margin-bottom: 5px;
}

.benefit-text p {
  font-size: 0.9rem;
  color: #666;
  margin: 0;
}

.legal-links a {
  color: #4a7c4f;
  text-decoration: none;
  font-weight: 600;
  transition: color 0.2s;
}

.legal-links a:hover {
  color: #1a5e20;
  text-decoration: underline;
}

.hidden {
  display: none !important;
}

@media (max-width: 968px) {
  .signup-content {
    grid-template-columns: 1fr;
  }

  .signup-header h1 {
    font-size: 2rem;
  }

  .signup-header .subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 600px) {
  .sms-signup-page {
    padding: 20px 15px;
  }

  .signup-header {
    margin-bottom: 30px;
  }

  .signup-header h1 {
    font-size: 1.5rem;
  }

  .form-card,
  .info-card {
    padding: 25px;
  }

  .form-card h2,
  .info-card h2 {
    font-size: 1.2rem;
  }

  .consent-checkbox label {
    font-size: 0.8rem;
  }
}