    @import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html, body{
        overflow: hidden;
    }

    body {
      font-family: 'Poppins', sans-serif;
      background-color: #f6f6f6;
    }

    .container {
      display: flex;
      height: 100vh;
    }


    .left {
        flex: 1;
        height: 100vh;
        position: relative;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        background-size: cover;
        background-position: center;
        background-color: #27C081;
      }


      .overlay-text {
        position: relative;
        z-index: 2;
        font-family: 'Poppins', sans-serif;
        font-size: 2.5rem;
        font-weight: 600;
        color: white;
        text-align: center;
        padding: 0 20px;
        text-shadow:
    -1px -1px 0 #000,
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
      }

      .backbtn{
        position: relative;
        z-index: 3;
        left: -44vw;
        top: -45vh;
        background-color: #1bab6f;
        color: #ffffff;
        border-radius: 10%;
        padding: 0.4rem;
        font-size: 0.8rem;
        text-decoration: none;
      }

      .backbtn:hover{
        background-color: #078a53;
      }

      .backbtn2{
        display: none;
        position: relative;
        z-index: 999999;
        left:-3vw;
        top: -45vh;
        background-color: #1bab6f;
        color: #ffffff;
        border-radius: 10%;
        padding: 0.4rem;
        font-size: 0.6rem;
        text-decoration: none;
      }

      .backbtn2:hover{
        background-color: #078a53;
      }


    .right {
      flex: 1;
      background-color: #ffffff;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
    }

    .login-box {
      background-color: #ffffff;
      padding: 40px;
      border-radius: 12px;
      box-shadow: 0 0 10px rgba(0,0,0,0.1);
      width: 100%;
      max-width: 400px;
    }

    .login-box h2 {
      text-align: center;
      margin-bottom: 10px;
      font-size: 24px;
      font-weight: 600;
    }

    .login-box h2 span {
      color: #27C081;
      font-weight: 700;
    }

    .login-box .form-img {
      display: block;
      margin: 0 auto 20px auto;
      width: 70px;
    }

    .input-group {
      position: relative;
      margin-bottom: 20px;
    }

    .input-group input {
      width: 100%;
      padding: 12px 45px;
      border: none;
      background-color: #f1f1f1;
      border-radius: 6px;
      font-size: 14px;
    }

    .input-group svg {
      position: absolute;
      top: 50%;
      left: 15px;
      transform: translateY(-50%);
      fill: #333;
    }

    .options {
      display: flex;
      justify-content: space-between;
      align-items: center;
      font-size: 13px;
      margin-bottom: 20px;
      flex-wrap: wrap;
    }

    .options label {
      display: flex;
      align-items: center;
    }

    .options input {
      margin-right: 6px;
    }

    .options a {
      text-decoration: none;
      color: #27C081;
      font-weight: 500;
      margin-top: 5px;
    }

    button {
      width: 100%;
      padding: 12px;
      border: none;
      background-color: #27C081;
      color: white;
      font-weight: 600;
      border-radius: 6px;
      cursor: pointer;
    }

    .register-text {
      text-align: center;
      margin-top: 15px;
      font-size: 13px;
    }

    .register-text a {
      color: #27C081;
      text-decoration: none;
      font-weight: 600;
    }

    .container {
        display: flex;
        flex-wrap: wrap;
      }

      .left, .right {
        flex: 1 1 50%;
      }


    @media (max-width: 768px) {

        .left {
            display: none;
          }

          .backbtn2{
            display: block;
          }

          .right {
            flex: 1 1 100%;
            height: 100vh;
          }

          .container {
            height: auto;
          }
          .backbtn{
            font-size: 0.7rem;
          }
    }

    @media (max-width: 480px) {
      .login-box {
        padding: 20px;
      }

      .input-group input {
        padding: 10px 40px;
      }

      .options {
        flex-direction: column;
        align-items: flex-start;
      }

      .options a {
        align-self: flex-end;
      }
    }



    button.tutupsal {
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    padding: 14px 22px;
    border: none;
    background: #c51d03;
    border-radius: 6px;
    cursor: pointer;
}
button.tutupsal:hover {
    background-color: #b51700; /* Warna hover lebih gelap untuk tombol */
}
.modal-sal {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2); /* Efek bayangan yang lebih kuat */
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 380px;
    width: 100%;
    padding: 30px 20px;
    border-radius: 24px;
    background-color: #ffffff;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%) scale(1.2);
}
section.active .show-modal {
    display: none;
}
.modal-sal {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
    z-index: 99;
}
.modal-sal i {
    font-size: 70px;
    color: #c51d03;
}
.modal-sal h2 {
    margin-top: 20px;
    font-size: 25px;
    font-weight: 500;
    color: #333;
}
.modal-sal h3 {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    text-align: center;
}
.modal-sal .butsal {
    margin-top: 25px;
}
.modal-sal button {
    font-size: 14px;
    padding: 6px 12px;
    margin: 0 10px;
}

button.tutupbut{
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    padding: 14px 22px;
    border: none;
    background: #28c76f;
    border-radius: 6px;
    cursor: pointer;
  }
  button.tutupbut:hover {
    background-color: #2eb169;
  }
  .modal-box {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  section.active .show-modal {
    display: none;
  }
  /* .overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
  }
  section.active .overlay {
    opacity: 1;
    pointer-events: auto;
  } */
  .modal-box {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 380px;
    width: 100%;
    padding: 30px 20px;
    border-radius: 24px;
    background-color: #ffffff;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%) scale(1.2);
  }
.modal-box {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
    z-index: 99;
  }
  .modal-box i {
    font-size: 70px;
    color: #28c76f;
  }
  .modal-box h2 {
    margin-top: 20px;
    font-size: 25px;
    font-weight: 500;
    color: #333;
  }
  .modal-box h3 {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    text-align: center;
  }
  .modal-box .but {
    margin-top: 25px;
  }
  .modal-box button {
    font-size: 14px;
    padding: 6px 12px;
    margin: 0 10px;
  }


/* popup berhasil update */


button.tutupbutup{
    font-size: 18px;
    font-weight: 400;
    color: #fff;
    padding: 14px 22px;
    border: none;
    background: #f39c12;
    border-radius: 6px;
    cursor: pointer;
  }
  button.tutupbutup:hover {
    background-color: #f39c12;
  }
  .modal-up {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  }
  section.active .show-modal {
    display: none;
  }
  /* .overlay {
    position: fixed;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    opacity: 0;
    pointer-events: none;
  }
  section.active .overlay {
    opacity: 1;
    pointer-events: auto;
  } */
  .modal-up {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 380px;
    width: 100%;
    padding: 30px 20px;
    border-radius: 24px;
    background-color: #ffffff;
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%) scale(1.2);
  }
.modal-up {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, -50%) scale(1);
    z-index: 99;
  }
  .modal-up i {
    font-size: 70px;
    color: #f39c12;
  }
  .modal-up h2 {
    margin-top: 20px;
    font-size: 25px;
    font-weight: 500;
    color: #333;
  }
  .modal-up h3 {
    font-size: 16px;
    font-weight: 400;
    color: #333;
    text-align: center;
  }
  .modal-up .butup {
    margin-top: 25px;
  }
  .modal-up button {
    font-size: 14px;
    padding: 6px 12px;
    margin: 0 10px;
  }
