


/*.input-icon {*/
/*  position: relative;*/
/*  display: flex;*/
/*}*/

/*.input-icon .icon-left {*/
/*  position: absolute;*/
/*  top: 9px;*/
/*  left: 13px;*/
/*  color: #373737;*/
/*}*/

/*.input-icon .form-control {*/
/*  padding-left: 37px;*/
/*}*/

/*.card-login {*/
/*  margin-top: 40%;*/
/*  padding-top: 20px;*/
/*  border-radius: 1.3rem;*/
/*    background-color: rgba(255, 255, 255, 0.556);*/
/*    box-shadow: 1px 1px 6px rgb(223 223 223 / 90%);*/
/*    border: 1px solid #fff !important;*/
/*}*/

/*.container-login {*/
/*  max-width: 400px;*/
/*  align-items: center;*/
/*  justify-content: center;*/
/*}*/

/*.body-login {*/
/*  background-image: linear-gradient(188deg, rgba(69,60,158,1) 0%, rgba(9,9,121,1) 35%, rgba(24,13,91,1) 100%);*/
/*  padding         : 0px;*/
/*  background-repeat: no-repeat;*/
/*  background-size: cover;*/
/*  display: table;*/
/*  width: 100%;*/
/*  height: 100vh;*/
/*}*/

/*.container-login img {*/
/*  max-height: 150px;*/
/*  margin-bottom: 40px;*/
/*}*/

/*.textBawah p {*/
/*    position: fixed;*/
/*    left: 0;*/
/*    right: 0;*/
/*    width: 100%;*/
/*    color: white;*/
/*    text-align: center;*/
/*    display: block;*/
/*    margin-top: 65%;*/
/*    font-size: 10px;*/
/*}*/









.sigup {
  color: #ffff;
  font-size: 13px;
}

.sigup a {
  color: #fffcaf;
}



/* CSS untuk animasi ketikan */
::-webkit-input-placeholder {
  opacity: 0.2;
  transition: all 0.3s ease-in-out;
}

input:focus::-webkit-input-placeholder,
input.imitatefocus::-webkit-input-placeholder {
  -webkit-transform: translateY(-125%);
  font-size: 75%;
  opacity: 0.05;
}

/* CSS NEW LOGIN */
:root {
  --background: linear-gradient(
      188deg,
      rgba(69, 60, 158, 1) 0%,
      rgba(9, 9, 121, 1) 35%,
      rgba(24, 13, 91, 1) 100%
  );
  --color: #ffffff;
  --primary-color: #1958a2;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow: hidden;
}

body {
  margin: 0;
  font-family: "Poppins", sans-serif;
  background: var(--background);
  color: var(--color);
  letter-spacing: 1px;
  transition: background 0.2s ease;
}

p {
  text-decoration: none;
}

.container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.login-container {
  position: relative;
  width: 22.2rem;
}


.custom-form-group,
    .illustration {
        position: relative;
        z-index: 1; /* Ganti nilai sesuai kebutuhan Anda */
    }
    
.custom-form-group {
        z-index: 999; /* Ganti nilai sesuai kebutuhan Anda */
    }

.form-container {
  border: 3px solid hsla(0, 0%, 65%, 0.158);
  box-shadow: 0 0 36px 1px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  /*backdrop-filter: blur(20px);*/
  /*z-index: 99;*/
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(15px); /* Untuk dukungan Safari */
  z-index: -1; /* Mengatur lapisan di belakang elemen utama */
  padding: 2rem;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

.login-container form input {
  display: block;
  padding: 14.5px;
  width: 100%;
  margin: 2rem 0;
  color: var(--color);
  outline: none;
  background-color: #9191911f;
  border: none;
  border-radius: 5px;
  font-weight: 500;
  letter-spacing: 0.8px;
  font-size: 15px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(3px); /* Untuk dukungan Safari */
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
}

.login-container form input:focus {
  box-shadow: 0 0 16px 1px rgba(0, 0, 0, 0.2);
  animation: wobble 0.3s ease-in;
  -webkit-animation: wobble 0.3s ease-in;
}

.login-container form button {
  background-color: #ff8c00;
  color: var(--color);
  display: block;
  padding: 13px;
  border-radius: 5px;
  outline: none;
  font-size: 18px;
  letter-spacing: 1.5px;
  font-weight: bold;
  width: 100%;
  cursor: pointer;
  margin-bottom: 2rem;
  transition: all 0.1s ease-in-out;
  border: none;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
}

.login-container form button:hover {
  box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.15);
  transform: scale(1.02);
}

.circle {
  width: 20rem;
  height: 20rem;
  position: absolute;
  width: 40%;
}

.illustration {
  position: absolute;
  top: -31%;
  right: -1px;
  width: 90%;
}

.circle-one {
  top: 0;
  left: 0;
  z-index: -1;
  transform: translate(-45%, -45%);
}

.circle-two {
  bottom: 0;
  right: 0;
  z-index: -1;
  transform: translate(45%, 45%);
}

.register-forget {
  margin: 1rem 0;
  display: flex;
  justify-content: space-between;
}

.theme-btn-container {
  position: absolute;
  left: 0;
  bottom: 2rem;
}

.theme-btn {
  cursor: pointer;
  transition: all 0.3s ease-in;
}

.theme-btn:hover {
  width: 40px !important;
}

@media only screen and (max-width: 767px) {
  body {
    background: var(--background);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
  }
}
