#app{
        zoom: 80%;
}
#content_utm{
    display: flex;
    justify-content: center;
    min-height: calc(100vh - 10px); 
    padding: 20px;
    box-sizing: border-box;
}
#remybutton {
    position: relative;
    z-index: 1;
    left: 90%;
    top: -25px;
    cursor: pointer;
  }
  .myform {
    margin-top: 0%;
    background: #fafafa;
    border: 1px solid #f4f4f4;
  }
  .myinput {
    width: 100%;
    padding: 5px;
  }
  .cekbrng{
    font-family: 'Dosis', sans-serif;
    border-style:none; 
    height: 100px; 
    font-size: 50px; 
    background: none;
    cursor: pointer;
    cursor: text;
  }
  
#loginPreloader {
    position: fixed;
    inset: 0;

    display: none;
    place-items: center;

    background: #fff;

    z-index: 99999;
}

.spinner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.spinner > div {
    width: 9px;
    height: 40px;
    background: #17a2b8;

    animation:
        stretch 1.2s
        infinite
        ease-in-out;
}

.spinner .rect2 {
    animation-delay: -1.1s;
}

.spinner .rect3 {
    animation-delay: -1.0s;
}

.spinner .rect4 {
    animation-delay: -0.9s;
}

.spinner .rect5 {
    animation-delay: -0.8s;
}

@keyframes stretch {

    0%,
    40%,
    100% {
        transform: scaleY(0.4);
    }

    20% {
        transform: scaleY(1);
    }

}