
/* HERO */
.register-hero {
  position: relative;
  z-index: 1;
  overflow: hidden;
  background-color: #142a3b;
  height: 50vh;
}

.register-hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../images/worldPattern.png');
  background-size: cover;
  background-position: bottom bottom;
  opacity: 1; /* adjust image transparency */
  z-index: -1;
}

.register-hero h1 {
  font-family: 'Neue-Montreal', sans-serif;
  font-size: 3.2rem;
  color: #fff;
}

.register-hero img {
  width: 150px;
  margin-bottom: 1em;
}

.register-hero p {
  color: #ce9b01;
  font-weight: 500;
}

.form {
  border: solid red 1px;
}

/* FORM SECTION */
.form-container {
  background: #ffffff;
  border: 0px solid #d9eaf5;
  border-radius: 1px;
}
.section-title {
  color: #1ba9de;
  font-weight: 700;
  margin-bottom: 20px;
  font-family: 'Neue-Montreal', sans-serif;
}
.form-label {
  font-weight: 600;
  color: #142a3b;
}
.form-control, .form-select, textarea {
  border-radius: 10px;
  border: 1px solid #ccc;
  padding: 10px 15px;
  transition: all 0.3s ease;
}
.form-control:focus, .form-select:focus, textarea:focus {
  border-color: #1ba9de;
  box-shadow: 0 0 8px rgba(27, 169, 222, 0.3);
}

/* Checkbox spacing */
input[type="checkbox"] {
  margin-right: 8px;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .register-hero {
    height: 40vh;
  }
  .register-hero h1 {
    font-size: 2rem;
  }
  .form-container {
    padding: 2rem;
  }
}

/* SUCCESS SCREEN */

    /* --- SUCCESS SECTION --- */
    .success-section {
      padding: 80px 20px;
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      text-align: center;
      background-color: #fff;
    }

    .success-card {
      background: #ffffff;
      border-radius: 16px;
      padding: 3rem 2rem;
      max-width: 650px;
      box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
      animation: fadeInUp 0.9s ease-in-out;
    }

    .success-icon {
      font-size: 4rem;
      color: #00d26a;
      margin-bottom: 1rem;
      animation: pop 0.6s ease;
    }


        .btn-home {
          background-color: #041C32;
          border: none;
          color: #fff;
          font-weight: 600;
          padding: 0.75rem 2rem;
          border-radius: 2rem;
          transition: 0.3s;
        }

        .btn-home:hover {
          background-color: #033047;
          transform: translateY(-2px);
        }

    @keyframes fadeInUp {
      from { opacity: 0; transform: translateY(30px); }
      to { opacity: 1; transform: translateY(0); }
    }

    @keyframes pop {
      0% { transform: scale(0.6); opacity: 0; }
      80% { transform: scale(1.1); opacity: 1; }
      100% { transform: scale(1); }
    }

    @media (max-width: 992px) {
      .hero-content h1 {
        font-size: 2rem;
      }
      .success-card {
        padding: 2rem 1.5rem;
      }
    }
