.pageLogin img {
    height: 50px;
    margin: 0 0 20px;
}

.hidden { display: none; }
.fade { transition: all 0.3s ease-in-out; }

    /* Background Animasi Gradien */
    @keyframes gradientBackground {
      0% { background-position: 0% 50%; }
      50% { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
    }
    .animated-background {
      background: linear-gradient(-45deg, #7278cb, #949be3, #363E9D);
      background-size: 400% 400%;
      animation: gradientBackground 15s ease infinite;
    }

@media only screen and (max-width: 767px) {
    .pageLogin{
        margin: 15px;
    }
}