.login-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    padding: 100px 0;
}
.header {
    position: fixed;
    inset: 0;
    top: 0;
    height: 70px;
    width: 100%;
    display: flex;
    align-items: center;
    padding: 12px 32px;
    border-bottom: 1px solid var(--neutral-2);
    background: var(--shade-1);
}
.header .logo {
    width: 90px;
    margin: 0 40px;
}
.stickers {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
}
.stickers .bottom-sticker,
.stickers .top-sticker {
    display: flex;
    width: 100%;
    /* overflow: hidden; */
    position: absolute;
    width: 200px;
    height: 200px;
}
.stickers .bottom-sticker{
    bottom: 15px;
    right: 0;
}

.stickers .top-sticker {
    left: 0;
    top: 15px;
    transform: rotate(180deg);
}
.footer {
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    height: 70px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--shade-1);
    border-top: 1px solid var(--neutral-2);

}
.footer .copy-right {
    font: var(--body-3-400);
    color: #757575;
}
