@keyframes slidein {
    0% {
        translate: 150vw 0;
        opacity: 0;
    }

    50% {
        opacity: 0;
    }

    100% {
        translate: 0 0;
        opacity: 1;
    }
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
    background: linear-gradient(90deg, #6a1cc4 8.33%, #661ec5 10.29%, #5725c7 15.49%, #452dc9 22.33%, #3137cc 30.14%, #213ece 36.33%, #1853d1 47.4%, #1261d3 55.21%, #0e6ad4 60.42%, #0b71d5 64.32%, #1089d7 80.6%, #1399d9 91.67%);
    background-repeat: no-repeat;
    background-size: cover;
    overflow-x: hidden;
}

aside {
    width: 50%;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 1em;
    position: relative;
    padding-top: 5em;
}

header {
    width: 100%;
    padding: 1em;
    background-color: #1d48cf;
    box-shadow: 0px -5px 25px 0px rgba(0, 0, 0, 0.55);
    -webkit-box-shadow: 0px -5px 25px 0px rgba(0, 0, 0, 0.55);
    position: sticky;
    top: 0;
    left: 0;
}

header .header-content {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

main {
    width: 100%;
    height: calc(100vh - 70px);
    display: flex;
}

aside .banner {
    height: 100%;
    object-fit: contain;
}

aside .logo {
    position: absolute;
    z-index: 1;
    width: 50%;
    left: 50%;
    top: 1em;
    transform: translate(-50%, 0%);
}

.full-logo {
    width: 300px;
    margin-left: auto;
    margin-right: auto;
}

.auth-wrapper {
    width: 50%;
    background-color: #1657d1;
    height: 100%;
    display: flex;
    place-items: center;
    justify-content: center;
}

.auth {
    background-color: white;
    border: 0.1em solid rgba(110, 110, 110, 0.47);
    padding: 2em;
    border-radius: 0.5em;
    display: flex;
    flex-direction: column;
    gap: 1em;
    animation-duration: 500ms;
    animation-name: slidein;
    width: 50%;
}

.auth form {
    width: 100%;
}

@media (max-width: 800px) {
    aside {
        display: none;
    }

    .auth {
        width: 80%;
    }

    .auth-wrapper {
        width: 100%;
        background-color: unset;
    }

    header {
        display: block;
    }
}