.authentication-wrapper {
    background-color: #ffffff !important;
}

.image img {
    width: 300px;
    top: 30px;
    left: 30px;
    position: absolute;
}


.w-px-400 {
    background-color: #ffffff;
    border-radius: 1.5rem
}

/* Shake Functionlaity */
@keyframes shake {
    0% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-5px);
    }

    50% {
        transform: translateX(5px);
    }

    75% {
        transform: translateX(-5px);
    }

    100% {
        transform: translateX(0);
    }
}

.shake {
    animation: shake 0.4s ease-in-out;
}