
/* INSCRIPTION PAGE STYLES */

body {
  font-family: "Segoe UI", sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f6fa;
  color: #333;
}

.hero-section {
  position: relative;
  background: linear-gradient(to right, #2c3e50, #3498db);
  color: white;
  padding: 3rem 2rem;
  text-align: center;
}

.overlay {
  display: none;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  height: 50px;
}

.navbar-right {
  margin-left: auto;
}

.cta-btn {
  background-color: #f39c12;
  padding: 0.6rem 1.2rem;
  color: white;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background-color: #d87f0b;
  transform: translateY(-2px);
}

/* REGISTRATION FORM SECTION */
.registration-section {
  padding: 4rem 2rem;
  background-color: #f0f0f5;
  text-align: center;
}

.registration-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.registration-form {
  background: white;
  border-radius: 10px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  padding: 2rem;
  flex: 1 1 300px;
  max-width: 400px;
}

.registration-form h3 {
  margin-bottom: 1.5rem;
  font-size: 1.5rem;
  color: #333;
}

.registration-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.registration-form input {
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 1rem;
}

.registration-form button {
  background-color: #f39c12;
  color: white;
  border: none;
  padding: 0.8rem 1rem;
  font-size: 1rem;
  border-radius: 5px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.registration-form button:hover {
  background-color: #d87f0b;
}

/* FOOTER */
.site-footer {
  background-color: #111;
  color: white;
  padding: 2rem;
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand,
.footer-links,
.footer-contact {
  flex: 1 1 200px;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li a {
  color: white;
  text-decoration: none;
}

.footer-bottom {
  text-align: center;
  margin-top: 2rem;
  font-size: 0.9rem;
  color: #ccc;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .registration-container {
    flex-direction: column;
    align-items: center;
  }

  .registration-form {
    width: 100%;
    max-width: 100%;
  }

  .navbar {
    flex-direction: column;
    align-items: flex-start;
  }
}
.fade-message {
  opacity: 0;
  transition: opacity 0.4s ease-in-out;
}

.fade-message.show {
  display: block;
  opacity: 1;
}


