body {
    background-color: #ffffff;
    display: flex;
    flex-direction: row;
    justify-content: center;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
 .overlap-group-wrapper {
    background-color: #ffffff;
    width: 375px;
    height: 812px;
 }
 .overlap-group {
    position: relative;
    height: 852px;
    top: -40px;
    background-color: #4e9f3d;
    border-radius: 0px 0px 0px 0px;
  }
  .logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 15%;
    margin-bottom: 40px;
  }
  .logo {
    width: 200px;
    height: auto;
  }

  .login-box {
    background-color: #D8E9A8;
    border: 1px solid #e0e0e0;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin: 0 auto;
    height:550px ;
    width: 375px; /* Adjust the width as needed */
}
.input-image {
    position: absolute;

    left: 10px;
    top: calc(50% - 12.5px);
    width:25px;
  }



  .password-container {
    position: relative;
    width: 550px;
  }

  .input[type="password"] {
    padding-right: 10px; /* Ruang agar ikon tidak tumpang tindih dengan teks input */
  }

  .password-toggle {
    color: #1E5128;
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    z-index: 2;
    cursor: pointer;
  }


  .form-label {
    font-weight: bold;
    margin-left: 25px;
  }

  .form-control{
    border: 1px solid #ced4da;
    border-radius: 5px;
    padding: 10px;
    width: 100%;
  }


  .invalid-feedback {
    color: red;
    font-size: 12px;
    margin-top: 5px;
  }

  .checkbox-wrap {
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    font-size: 14px;
  }

  .checkbox-wrap input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
  }

  .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #ced4da;
    border-radius: 3px;
  }

  .checkbox-wrap input:checked ~ .checkmark:after {
    content: "";
    position: absolute;
    display: block;
    left: 7px;
    top: 3px;
    width: 4px;
    height: 9px;
    border: solid #080808;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
  }

  .text-wrapper-8 a,
  .text-wrapper-7 a {
    color: #0c0c0c;
    text-decoration: none;
  }

  .text-wrapper-8 a:hover,
  .text-wrapper-7 a:hover {
    text-decoration: underline;
  }

  .submit {
    background-color: #1E5128;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    cursor: pointer;
    transition: background-color 0.3s;
  }

  .submit:hover {
    background-color: #1E5128;
  }

  /* Make the form responsive */
  @media (max-width: 790px) {
    .container {
      padding: 0 20px;
    }
  }
