.mf-thanks-page {
  min-height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 5rem 0;
}

.mf-thanks-card {
  background: #303030e0;
  padding: 3rem 2.2rem;
  border-radius: 20px;
  max-width: 580px;
  width: 100%;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
  text-align: center;
  animation: fadeInUp .5s ease;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.mf-thanks-icon img {
  width: 70px;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.mf-thanks-title {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: .7rem;
}

.mf-thanks-subtitle {
  font-size: 1.1rem;
  color: #f5f5f5 !important;
  margin-bottom: 2rem;
}

.mf-thanks-divider {
  width: 60px;
  height: 3px;
  background: #000;
  margin: 1rem auto 2rem;
  border-radius: 3px;
}

.mf-thanks-text {
  font-size: 1rem;
  color: #f5f5f5 !important;
  margin-bottom: 2.4rem;
  line-height: 1.5;
}

.mf-thanks-recap {
  background: #fafafa;
  border-radius: 12px;
  padding: 1.2rem;
  margin-bottom: 2.2rem;
  text-align: left;
}

.mf-thanks-recap h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.mf-thanks-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.mf-btn-primary,
.mf-btn-secondary {
  display: inline-block;
  padding: 0.9rem 1.6rem;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  transition: 0.25s;
}

.mf-btn-primary {
  background: #000;
  color: #fff;
}

.mf-btn-primary:hover {
  background: #333;
}

.mf-btn-secondary {
  background: #e5e5e5;
  color: #222;
}

.mf-btn-secondary:hover {
  background: #d2d2d2;
}