html,
body {
  height: 100%;
  margin: 0;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

/* ==========================================
   THANK YOU PAGE
========================================== */

.thank-you {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 20px;
  min-height: 60vh;
}

.thank-you-box {
  max-width: 600px;
  width: 100%;
  background: #FFFFFF;
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
  padding: 50px 40px;
  text-align: center;
}

.thank-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: #1565A8;
  color: #FFFFFF;
  font-size: 42px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thank-you-box h1 {
  color: #1565A8;
  font-size: 28px;
  margin-bottom: 15px;
}

.thank-you-box p {
  color: #263238;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 12px;
}

.thank-btn {
  display: inline-block;
  margin: 15px 8px 0;
  padding: 12px 28px;
  background: #1565A8;
  color: #FFFFFF;
  text-decoration: none;
  border-radius: 6px;
  font-weight: 600;
  transition: 0.3s;
}

.thank-btn:hover {
  background: #0B2345;
}

.thank-btn.secondary {
  background: #FFFFFF;
  color: #1565A8;
  border: 2px solid #1565A8;
}

.thank-btn.secondary:hover {
  background: #1565A8;
  color: #FFFFFF;
}

@media (max-width: 480px) {
  .thank-btn {
    display: block;
    margin: 10px auto 0;
    width: 100%;
  }
}
