@keyframes backgroundShift {
    0% {
        background-position: 0 0;
    }
    25% {
        background-position: 100% 0;
    }
    50% {
        background-position: 100% 100%;
    }
    75% {
        background-position: 0 100%;
    }
    100% {
        background-position: 0 0;
    }
}

body {
    font-family: "e-Ukraine Head", sans-serif;
    background: radial-gradient(#b9dbe8, #ffffff, #ffd3dc) fixed;
    background-size: 200% 200%;
    animation: backgroundShift 10s linear infinite;
}

.auth-form-wrapper {
    min-width: 300px;
    max-width: 400px;
    text-align: center;
}
