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;
  }
}

/* ---login --- */

.login-container {
  max-width: 650px;
  margin: 80px auto;
  background-color: white;
  border: 2px solid #ffb325;
  border-radius: 20px;
  padding: 40px 30px 20px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  position: relative;
}

.login-title {
  position: absolute;
  top: -25px;
  left: 50%;
  /* Center horizontally */
  transform: translateX(-50%);
  background-color: #ffb325;
  color: black;
  padding: 10px 25px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
}

label {
  font-weight: 500;
  margin-bottom: 5px;
}

.form-check-label {
  margin-left: 5px;
}

.bottom-box {
  border-top: 1px solid #ddd;
  margin-top: 30px;
  padding-top: 15px;
  text-align: center;
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.register-btn {
  color: #007bff;
  font-weight: 600;
}

.register-btn:hover {
  text-decoration: underline;
}

.form-check {
  margin-bottom: 10px;
}

.login-container .form-control:focus {
  outline: none;
  box-shadow: 0 0 10px 0 rgba(1, 41, 112, 0.15);
  border: 1px solid rgba(1, 41, 112, 0.3);
}

@media (max-width: 480px) {
  .login-container {
    margin: 40px 15px;
    padding: 30px 20px;
  }

  .login-title {
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #ffb325;
    color: black;
    padding: 10px 25px;
    border-radius: 12px;
    font-weight: 600;
    width: 75%;
    font-size: 1rem;
  }
}

#showPassword {
  color: #000 !important;
}

.form-check-input {
  border: 2px solid #ffb325;
}