body {
  font-family: Arial, sans-serif;
  text-align: center;
  padding: 50px;
}

.cta-button {
  display: inline-block;
  margin-top: 40px;
  padding: 15px 30px;
  background-color: #0059ff;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: #0041cc;
}

.subtitle {
  margin-top: 20px;
  font-size: 14px;
  color: gray;
}

/* ✅ Top-left container for HOME and REGISTER buttons */
#top-left-links {
  position: absolute;
  top: 15px;
  left: 15px;
  display: flex;
  gap: 12px;
  z-index: 10;
}

/* ✅ Common style for both HOME and REGISTER buttons */
#top-left-links a {
  background-color: white;
  padding: 8px 16px;
  border-radius: 12px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  font-weight: bold;
  text-decoration: none;
  color: #17253e;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 1rem;
  transition: color 0.3s ease;
}

#top-left-links a:hover {
  color: #007bff;
}
