.main-login {
    display: flex;
    width: 100%;
    height: 100vh;
    justify-content: center;
    align-items: center;

    & .login-form {
        width: 30%;
        display: flex;
        flex-direction: column;
        align-items: center;

        & input {
            margin: 1rem;
            width: 50%;
        }

        & button {
            margin-top: 2rem;
        }
    }

    & .message-container {
        position: absolute;
        top: 0;
        left: 0;
    }
}

