*{
    margin: 0;
    padding: 0;
}

html body{
    height: 100svh;
    /* background: rgb(6,0,104);
    background: linear-gradient(0deg, rgba(6,0,104,1) 5%, rgba(9,9,121,1) 19%, rgba(0,117,255,1) 88%); */
    background-image: url('../img/bg.avif');
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
    font-family: Poppins-Regular, sans-serif;
}

.layer1{
    height: 75svh;
    width: 50svw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0.5rem 1.5rem;
    background: linear-gradient(0deg, black, #444444);
    border-radius: 16px;
}

.layer2{
    background-image: url('../img/bg.avif');
    background-repeat: no-repeat;
    background-size: 190%;
    background-position: center center;
    height: 75svh;
    width: 50svw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0.5rem 1.5rem;
    border-radius: 16px;
}

.login-box{
    background: rgba(0, 0, 17, 0.43);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 0 30px -10px #bce8ff;
    height: 75svh;
    width: 50svw;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    font-size: 30px;
    color: #fff;
    padding: 0.5rem 1.5rem;
}

/* START SECTION ATAS */
.section-atas{
    display: flex;
    flex-direction: column;
    padding-bottom: 10px;
    width: 100%;
}

.text-section-atas{
    display: flex;
    justify-content: center;
    text-align: center;
    font-size: 18pt;
    font-weight: 100;
}

.logo-section-atas{
    height: 100px;
    display: flex;
    justify-content: center;
}

.logo-section-atas img{
    height: inherit;
}
/* END SECTION ATAS */

/* START SECTION TENGAH */
.section-tengah{
    border-top: 3px solid #fff;
    border-bottom: 3px solid #fff;
    font-size: 18pt;
    padding: 10px 30px;
    /* display: flex; */
}

input[type=text],  
input[type=password] {
    padding: 12px 40px;  
    margin: 8px 0;  
    display: inline-block;  
    border: 2px solid #fff;  
    box-sizing: border-box;  
}
  
.grupinput { 
    position: relative; 
}

.grupinput span{
    position: absolute;
    display: flex;
    justify-content: center;
    justify-items: center;
    background-color: #fff;
    width: 60px;
    height: 50px;
    top: 4px;
    left: 120px;
    border-radius: 10%;
}
  
.grupinput i{ 
    position: absolute; 
    left: 20px; 
    top: 15px; 
    color: rgb(11, 0, 97);
}

.grupinput input{
    outline: none;
    border-radius: 0 10px 10px 0;
    margin-left: 177px;
    width: 58%;
}

.custom-select {
    min-width: 177px;
    position: relative;
    height: 42px;
  }
  
  select {
    appearance: none;
    /*  safari  */
    -webkit-appearance: none;
    /*  other styles for aesthetics */
    width: 58%;
    height: 42px;
    margin-left: 177px;
    margin-top: 8px;
    padding: 12px 40px;
    background-color: #fff;
    border: 2px solid #fff;
    border-radius: 0 10px 10px 0;
    color: #000;
    cursor: pointer;
  }
  
  .custom-select::before,
  .custom-select::after {
    --size: 2px;
    content: "";
    position: absolute;
    right: 1rem;
    pointer-events: none;
    border: var(--size) solid #13e3ff;
  }
  
  .kotak-captcha{
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
  }

  input[type=submit]{
    height: 2.5rem;
    width: 18.8rem;
    border-radius: 5px;
    font-size: 1.3rem;
    font-weight: bold;
    background-color: #fff;
    border: none;
  }

  input[type=submit]::before,
  input[type=submit]::after{
    border: 1px solid #fff;
    background-color: #fff;
  }

  input[type=submit]:hover{
    border: 2px solid #13e3ff;
    cursor: pointer;
  }

  input[type=submit]:visited,
  input[type=submit]:link{
    border: 1px solid #fff;
  }

  input[type=submit]:active{
    border: 2px solid #13e3ff;
    background: radial-gradient(circle, rgba(255,255,255,1) 60%, rgba(19,227,255,1) 80%, #13e3ff 100%);
  }
/* END SECTION TENGAH */

/* START SECTION BAWAH */
.section-bawah{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 1rem;
}

.section-bawah span{
    font-size: 1rem;
}
/* START SECTION BAWAH */

/* GLOWING ANIMATION */
.glowing::before{
    content: '';
    position: absolute;
    left: -2px;
    top: -2px;
    /* background: linear-gradient(45deg, #e8f74d, #ff6600d9, #00ff66, #13ff13, #ad27ad, #bd2681, #6512b9, #ff3300de, #5aabde); */
    background: linear-gradient(45deg, #00ffff, #fff, #0040ff, #13e3ff);
    background-size: 400%;
    width: calc(100% + 5px);
    height: calc(100% + 5px);
    z-index: -1;
    animation: glower 20s linear infinite;
    border-radius: 16px;
  }
  
  @keyframes glower {
    0% {
      background-position: 0 0;
    }
    
    50% {
      background-position: 400% 0;
    }
    
    100% {
      background-position: 0 0;
    }
  }