body {
	margin: 0;
}

img {
	width: 100%;
}

.wrapper {
	display: flex;
	flex-wrap: wrap;
	width: 440px;
	margin: 0 auto;
	height: 956px;
	background-image: url('/assets/img/bg.png');
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	justify-content: center;
	text-align: center;
	gap: 30px;
}

.top {
	margin-top: 16px;
}

.bottom {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
	width: 100%;
}

.buttons {
	width: 100%;
	height: 140px;
}

.buttons .btn {
	position: absolute;
	top: 0;
	left: 0;
	/* transition: transform 0.3s ease; */
}

/* .buttons .btn:hover {
	transform: scale(1.1);
} */

.buttons .btn-login {
    top: -18%;
}
	
.buttons .btn-signup {
	margin-left: unset
}

.buttons .btn-signup img {
	width: unset;
}

.wrapper > div {
	position: relative;
}

@media  (max-width: 440px) {
	.wrapper {
		width: 100%;
	}

	.buttons .btn-signup {
		margin-left: -14px;
	}
	
	.buttons .btn-signup img {
		width: 94%;
	}
}