.form-title {
  margin-top: 50px;
  text-align: center;
  font-size: 30px;
}

.form-subtitle {
  margin-top: 30px;
  text-align: center;
  color: #666666;
}

form {
  margin-top: 50px;
}

/* THANK YOU PAGE */
.thankyou-page-container {
  padding: 80px 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  min-height: 70vh;
  text-align: center;
}

.thankyou-icon {
  font-size: 64px;
  color: #2e7d32;
  animation: thankYouPop 0.5s ease;
}

@keyframes thankYouPop {
  0% { transform: scale(0); opacity: 0; }
  50% { transform: scale(1.2); }
  100% { transform: scale(1); opacity: 1; }
}

.message-thankyou h1 {
  color: #1a1a1a;
  font-size: 36px;
  font-weight: 800;
  margin: 0;
}

.message-content {
  font-size: 16px;
  color: #666;
  font-weight: 400;
  line-height: 1.6;
}

.thankyou-actions {
  display: flex;
  gap: 12px;
  margin-top: 24px;
}

.thankyou-btn {
  display: inline-block;
  padding: 12px 28px;
  background: #C4132A;
  color: #fff;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.thankyou-btn:hover {
  background: #a81023;
  color: #fff;
  transform: translateY(-1px);
}

.thankyou-btn-outline {
  display: inline-block;
  padding: 12px 28px;
  background: #fff;
  color: #555;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
}

.thankyou-btn-outline:hover {
  border-color: #C4132A;
  color: #C4132A;
}
