.form_container{
  margin-top: 8rem;
    max-width: 500px;
    width: 100%;
    padding: 4rem;
    border-radius: 3rem;
    background: rgba(255, 255, 255, 0.2); /* putih tipis */
    backdrop-filter: blur(10px);           /* efek blur background */
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

#col1{
  margin-top: 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-left: 6rem;
}

#col2{
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

#content_wrap{
    height: 93vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

#row_login{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

#page_overlay{
  position: fixed;
  width: 100%;
  height: 100vh;
  background-image: linear-gradient(to right, black , rgb(83, 83, 83));
  opacity: 40%;
  z-index: -1;
}

#col_capcha img{
  border-top-left-radius: 1rem;
  border-bottom-left-radius: 1rem;
}

#capcha_wrapper img{
  border-radius: 1rem;
  max-width: 100%;
}

#logo_wrapper{
  position: fixed;
  display: flex;
  height: 150px;
  align-items: center;
  justify-content: center;
  z-index: -1;
  gap: 2rem;
  margin-bottom: 60rem;
}

.logo_anti_korup{
  height: 100px;
}

@media (max-width: 1024px) {

  .content{
    padding-right: 1rem !important;
    padding-left: 1rem !important;
  }

  #col1 {
    display: none;   /* sembunyikan kolom 1 */
  }

  #col-2 {  /* jadikan full width */
    max-width: 700px;
    width: 100%;
  }

  .form_container{
    max-width: 500px;
    width: 100%;
  }

}