

body, html {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
 
}

/* Container for all content */
.page-container {
  position: relative;
  width: 100%;
  min-height: 100vh;
 overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}




/* Form Container */
.form-container {
  background-color: white;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  /* z-index: 10; */
  z-index: 2;
  width: 100%;
  max-width: 1250px;
  margin: 0px auto 0px auto;
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
  height: auto;
  justify-content: center;

}
.form-container .container .main-logo{
  width: 7.5rem;
  height: auto;
}
.text-center {
  color: rgb(42, 134, 73);
  font-family: Poppins;
  font-weight: 700 !important;
  font-size: 32px !important;
  line-height: 48px;
  margin-bottom: 30px;
  padding-left: 1rem;
  padding-right: 1rem;


}
.btn-primary{
  background-color: rgb(42, 134, 73) !important;
  border: 1px solid  rgb(42, 134, 73) !important;;
}


.form-container .container form{
  padding-left: 0.74rem;
  padding-right: 0.74rem;
}
form  .form-label{
  font-family: Poppins;
  font-weight: 600;
  font-size: 14px;
  line-height: 21px;
  color: rgba(51, 51, 51, 1);
}
form input::placeholder{
  color: rgba(117, 117, 117, 1);
  font-family: Poppins;
  font-weight: 400;
  font-size: 14px;
  line-height: 21px;
}
form select  option:disabled{
  color:rgba(117, 117, 117, 1) ;
}
.text-center .btn-primary{
  color: rgba(255, 255, 255, 1) !important;
  background: linear-gradient(180deg, #D2FFA4 -27.16%, rgba(14, 118, 49, 1) 50%) !important;
  border-radius: 50px;
  font-family: Poppins;
  font-weight: 600 !important;
  font-size: 1.5rem !important;
  line-height: 1.5rem;
  border: none;
  padding: 0.8rem 2.5rem;

}
.text-center .btn-primary:hover{
  transform: scale(1.05);
  transition: transform 0.3s ease-in-out;
}

/* COMBO BOX STYLING STAART... */
.combobox-container {
  position: relative;
  margin-bottom: 1.5rem;
}

.combobox-input {
  width: 100%;
  padding: auto 1rem;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  /* background-color: #fff; */
  padding-right: 40px;
}

.combobox-input:focus {
  border-color: #86b7fe;
  box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
  outline: none;
}

.combobox-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #6c757d ;
  cursor: pointer;
  font-size: 1.1rem;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: background-color 0.2s;
}

.combobox-toggle:hover {
  background-color: #f1f3f5;
  color: #495057;
}

.options-container {
  position: absolute;
  width: 100%;
  max-height: 250px;
  overflow-y: auto;
  background: white;
  border: 1px solid #ced4da;
  border-radius: 0.375rem;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  z-index: 1000;
  margin-top: 5px;
  display: none;
}

.option-item {
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background 0.2s;
  display: flex;
  align-items: center;
}

.option-item:hover {
  background-color: #f1f5f9;
}

.option-item i {
  margin-right: 10px;
  color: #4b6cb7;
  width: 20px;
  text-align: center;
}

/* COMBO BOX STYLING END ! */

/* RESPONSIVENESS */
@media (max-width: 1024px) {
  .header img.logo {
      width: 25%; 
  }
  .header img.pm-image {
      width: 30%;
  }
  .header img.logo-desc {
      width: 30%;
  }
}

@media (max-width: 768px) {
  .header {
      flex-direction: column;
      height: auto;
  }
  .form-container .container .main-logo{
    width: 6rem;
    height: auto;
  }
  .header img.logo,
  .header img.logo-desc,
  .header img.pm-image {
      position: static;
      width: 40%;
      margin: 10px auto;
  }
}

@media (max-width: 576px) {
  .header img.logo,
  .header img.logo-desc,
  .header img.pm-image {
      width: 50%;
  }
  .header img.decoration-lines {
      height: 40vh;
  }
  .form-container {
      max-width: 95%;
      padding: 15px;
  }
}


@media (max-width: 375px) {
  .text-center {
      font-size: 20px !important;
      line-height: 30px;
  }
  
  .container {
      padding-left: 8px;
      padding-right: 8px;
  }
  
  .form-label {
      font-size: 13px !important;
  }
  
  input, select {
      font-size: 14px !important;
  }
}

@media (max-width: 320px) {
  

  .container {
      padding-left: 5px;
      padding-right: 5px;
  }
  
  .form-label {
      font-size: 12px !important;
  }
  
  input, select {
      font-size: 13px !important;
  }
}