html, body {
    margin: 0;
    padding: 0;
    height: 100%;
	background-color: rgb(238 240 252);
}

.sign-document {
    display: flex;
    flex-direction: column;
    height: 100vh;
    box-sizing: border-box;
}

.item.document-contant {
    flex: 1;
    overflow-y: auto;
    background-color: #f9f9f9;
	padding: 50px;
}

.item {
	flex: 1;
	padding: 50px;
}

.item:last-of-type {
	display: flex;
    align-items: center;
    justify-content: center;
}


.sign-document {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.btn {
    background-color: #E00356;
    color: #fff;
    font-weight: 600;
    font-size: 13px;
    line-height: 13px;
    padding: 16px 20px;
    transition: .2s;
    border-radius: 5px;
    border: 0;
    text-transform: uppercase;
}

@media (min-width: 0px) and (max-width: 991px) {
	.sign-document {
        display: flex;
        flex-direction: column;
    }

    .item.document-contant {
        flex: 0 0 100%;
        overflow-y: auto;
		padding-bottom: 300px;
    }

    .item:last-of-type {
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		background-color: rgb(238 240 252);
		box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
		box-sizing: border-box;
    }

    .btn {
        width: 50%;
		font-size: 30px;
		line-height: 60px;
    }
}