/* Success Step Styles */
.success-content {
  text-align: center;
  padding: 40px 20px;
  max-width: 600px;
  margin: 0 auto;
  font-family: "SomarSans", sans-serif;
}

.success-actions {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.success-actions .btn-primary {
  min-width: 120px;
  padding: 12px 24px;
  font-size: 16px;
  font-weight: 600;
}

/* Terms Agreement Validation */
.checkbox-label input[type="checkbox"].error {
  border: 2px solid #f44336 !important;
  box-shadow: 0 0 0 2px rgba(244, 67, 54, 0.2) !important;
}

.checkbox-label.error {
  color: #f44336;
}

.checkbox-label.error .checkmark {
  border-color: #f44336;
}

.success-icon {
  margin-bottom: 30px;
  animation: successPulse 2s ease-in-out infinite;
}

.success-content h3 {
  font-family: "SomarSans", sans-serif;
  font-weight: 600;
  font-size: 28px;
  color: #141F1F;
  margin-bottom: 20px;
}

.success-content p {
  font-family: "SomarSans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #4E5556;
  line-height: 1.6;
  margin-bottom: 20px;
}

.success-details {
  background: #f8f9fa;
  border-radius: 12px;
  padding: 24px;
  margin-top: 30px;
  text-align: left;
}

.success-details p {
  font-family: "SomarSans", sans-serif;
  font-weight: 600;
  font-size: 18px;
  color: #141F1F;
  margin-bottom: 16px;
}

.success-details ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.success-details li {
  font-family: "SomarSans", sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #4E5556;
  line-height: 1.6;
  margin-bottom: 12px;
  padding-left: 24px;
  position: relative;
}

.success-details li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  color: #4CAF50;
  font-weight: 600;
  font-size: 16px;
}

@keyframes successPulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .success-content {
    padding: 30px 15px;
  }
  
  .success-content h3 {
    font-size: 24px;
  }
  
  .success-content p {
    font-size: 14px;
  }
  
  .success-details {
    padding: 20px;
    margin-top: 20px;
  }
  
  .success-details p {
    font-size: 16px;
  }
  
  .success-details li {
    font-size: 13px;
  }
}
