@import url("https://fonts.googleapis.com/css2?family=Lato:wght@300;400;700;900&display=swap");

body {
	margin: 0;
	padding: 0;
	font-family: "Lato", sans-serif;
}

* {
	font-size: 16px;
}

.container {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	width: 100%;
	height: 100vh;
}

.back-image {
	width: 100%;
	height: 100%;
	object-fit: cover;
	object-position: center;
}

.right-wrapper {
	display: flex;
	flex-direction: column;
	justify-content: space-evenly;
	align-items: center;
}

.logo-image {
	width: 250px;
	height: auto;
}

.text-wrapper {
	display: flex;
	flex-direction: column;
	align-items: center;
	row-gap: 0.5rem;
}

.text-wrapper h2 {
	font-size: 1.5rem;
	font-weight: 700;
	color: #b31d15;
}

.text-wrapper span {
	font-size: 1rem;
	font-weight: 400;
	color: #858585;
}

.login-button {
	border-radius: 5px;
	padding: 1.25rem 8rem;
	font-size: 1rem;
	font-weight: 700;
	background-color: #b31d15;
	color: #ffffff;
	text-decoration: none;
	margin-top: 2rem;
}

.login-button:hover {
	background-color: #a11a12;
}

h2,
span {
	margin: 0;
	line-height: normal;
}

@media (max-width: 768px) {
	.container {
		grid-template-columns: 1fr;
	}

	.left-wrapper {
		display: none;
	}
}
