.login_container{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
}

.login_contents{
    width: 25%;
}

.login_window{
    position: relative;
    width: 100%;
    border-radius: .5rem;
}

.login_logo{
    width: 100%;
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translate(-50%, 0);
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

@media screen and (max-width: 599px) {
    .login_contents{
        width: 90%;
    }
}