body {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

.landing-header {
  background-color: #fff;
  padding: 0px 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.logo-img {
  width: 80%;
}

.landing-main {
  min-height: 40vh;
  background-image: url("/public/Images/banner1.jpg");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.hero-content {
  z-index: 2;
  padding: 40px 0;
}

.hero-content h1 {
  font-size: 4rem;
  font-weight: 500;
  color: #ffb325;
}

.hero-content p {
  font-size: 2rem;
  color: #ffffff;
}

.fixed-button {
  background-color: #ffb325 !important;
  width: 160px;
  color: #000;
}

@media (max-width: 576px) {
  .landing-header {
    padding: 0px 0px;
  }

  .hero-content h1 {
    font-size: 3rem;
    text-align: center;
  }

  .hero-content p {
    font-size: 2rem;
    text-align: center;
  }

  .fixed-button {
    margin-left: auto;
    margin-right: auto;
  }

  .logo-img {
    height: auto;
    width: 100%;
  }
}

@media (max-width: 400px) {
  .fixed-button {
    width: 130px;
    font-size: 1rem !important;
  }
}

/* ========  */
/* register form */
.register-section-container {
  max-width: 600px;
  margin: 0 auto;
  border-radius: 15px;
  padding: 30px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Specific styles for each section */
.form-container {
  max-width: 700px;
  margin: 40px auto;
  background-color: white;
  border: 2px solid #ffb325;
  border-radius: 20px;
  padding: 40px 30px 30px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  position: relative;
}

/* Form Heading */
.form-title {
  position: absolute;
  top: -25px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #ffb325;
  color: black;
  padding: 10px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
}

.btn-center {
  margin-top: 30px;
}

/* Radio Group Container */
.radio-container {
  max-width: 700px;
  margin: 50px auto;
  padding: 20px 30px;
  border: 2px solid #ffb325;
  border-radius: 12px;
  text-align: center;
}

#clustersForm .form-control:focus,
#clustersForm .form-select:focus {
  outline: none;
  box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
  border: 1px solid rgba(1, 41, 112, 0.3);
}

#othersForm .form-control:focus,
#othersForm .form-select:focus {
  outline: none;
  box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
  border: 1px solid rgba(1, 41, 112, 0.3);
}

label {
  font-weight: 500;
  margin-bottom: 5px;
}

.form-check-input {
  border: 2px solid #ffb325;
}

@media (max-width: 575px) {
  .radio-container {
    width: 100%;
  }

  .form-container {
    width: 390px;
  }

  .form-title {
    font-size: 0.9rem;
  }
}