body {
  margin: 0;
  padding: 0;
}

.landing-header {
  background-color: #fff;
  padding: 0px 30px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.logo-img {
  width: 80%;
}

/* ---- hero section ---- */
.landing-main {
  min-height: 40vh;
  background-image: url("../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) {
     .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;
  }
}


/* -- forget password form --  */
.forget-password-container {
  max-width: 450px;
  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;
}

.forget-password-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;
}

label {
  font-weight: 500;
  margin-bottom: 5px;
}

.forget-password-btn-group {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

/* Reset Button */
.forget-reset-btn {
  background-color: #ffb325;
  color: black;
  font-weight: 500;
  width: 50%;
}

/* Cancel Button */
.forget-cancel-btn {
  border: 1px solid #54668e;
  background-color: white;
  color: #54668e;
  font-weight: 500;
  width: 50%;
  text-align: center;
  line-height: 38px;
}


/* Responsive */
@media (max-width: 480px) {
  .forget-password-container {
    margin: 40px 15px;
    padding: 30px 20px;
  }

  /* .forget-password-btn-group {
    flex-direction: column;
  } */

  .forget-reset-btn,
  .forget-cancel-btn {
    width: 100%;
  }

  .forget-password-title{
  font-size: 0.8rem;
}
}

.forget-password-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);
}

.modal-content{
  border: 2px solid #ffb325;
}

