#app-navbar {
    display: none;
}

#auth-container {
    height: 100vh;
    background-color: var(--color-pink);
    background-image: url(/static/hero-graphics.png);
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}

#form-container {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 400px;
    height: 550px;
    background-color: var(--color-background);
    border-radius: 20px;
}

#flash {
    max-width: 500px;
    position: fixed;
    top: 7rem;
    left: 0;
    right: 0;
    margin: 0 auto;
    z-index: 100;
}

#back-icon {
    position: fixed;
    top: 2rem;
    left: 2rem;
}

#back-icon i {
    font-size: 4rem;
    color: var(--color-border-selected);
}

@media (max-width: 575px) {
    #auth-container {
        background-image: none;
    }

    #back-icon {
        top: 0rem;
        left: 0.5rem;
    }
}