*,
*::before,
*::after {
	box-sizing: border-box;
}
* {
	margin: 0;
}
body {
	line-height: 1.5;
	-webkit-font-smoothing: antialiased;
}
img,
picture,
video,
canvas,
svg {
	display: block;
	max-width: 100%;
}
input,
button,
textarea,
select {
	font: inherit;
}
p,
h1,
h2,
h3,
h4,
h5,
h6 {
	overflow-wrap: break-word;
}

.container {
	background-image: url('./assets/mobile/image-host.jpg');
	height: 100vh;
	background-repeat: no-repeat;
	background-size: cover;
	padding: 2.25rem;
	color: #c2cbe5;
	display: flex;
	align-items: center;
	flex-direction: column;
	font-family: 'Chivo', sans-serif;
	text-align: center;
	background-color: #121725;
	background-blend-mode: overlay;
}

.logo {
	margin-top: 110px;
	margin-bottom: 56px;
}

.text__title {
	margin-bottom: 1rem;
	font-size: 2rem;
	text-transform: uppercase;
	line-height: 120%;
	font-weight: 300;
	color: #54e6af;
}

.text__description {
	font-weight: 300;
	margin-bottom: 2rem;
	font-size: 14px;
	line-height: 150%;
}

.text__span {
	color: white;
}

.marcas {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin: 40px 0px;
	width: 100%;
	gap: 0.5rem;
	opacity: 0.6;
}

.marcas img {
	height: 15px;
}

.form__input {
	width: 100%;
	border-radius: 30px;
	height: 44px;
	background-color: #2c344b;
	border: none;
	padding-left: 28px;
	margin-bottom: 8px;
}

.form__input::placeholder {
	color: #ffffff50;
	font-size: 14px;
}

.form__btn {
	width: 100%;
	height: 44px;
	border-radius: 30px;
	background-color: #54e6af;
	border: none;
	color: #121725;
	line-height: 200%;
	font-weight: bold;
	font-size: 14px;
}

.bg {
	display: none;
}

@media (min-width: 600px) {
	.body {
		background-color: #121725;
	}
	.container {
		background-image: url('./assets/tablet/image-host.jpg');
		background-position: 300px 0px;
		background-size: contain;
		height: 868px;
		background-color: transparent;
		display: grid;
		grid-template-columns: 296px 296px;
		grid-template-rows: 128px 160px 552px;
		text-align: start;
	}
	.logo {
		grid-column: 1/2;
		grid-row: 2/3;
		margin-bottom: 104px;
		margin-top: 0;
	}
	.section {
		background-color: #121725;
		grid-column: 1 / 3;
		grid-row: 3 / 4;
		height: 100%;
		padding-top: 88px;
		padding-right: 140px;
		position: relative;
	}
	.text__title {
		font-size: 48px;
	}
	.text__description {
		color: #c2cbe5;
		font-size: 18px;
	}
	.form {
		position: relative;
	}
	.form__btn {
		position: absolute;
		width: 173px;
		right: 0;
	}
	.marcas {
		position: absolute;
		bottom: 0;
		justify-content: space-around;
	}
	.marcas img {
		height: 20px;
	}
}
@media (min-width: 1050px) {
	.container {
		background-image: none;
		padding: 153px 160px;
		grid-template-rows: 160px 494px;
		grid-template-columns: 368px 368px;
		background-position: 400px;
		background-size: contain;
	}
	.logo {
		grid-column: 1/2;
		grid-row: 1/2;
	}
	.section {
		grid-row: 2/3;
		padding-right: 130px;
	}
	.bg {
		display: block;
		position: absolute;
		top: 153px;
		right: 0;
		z-index: -1;
	}
	.text__description {
		max-width: 448px;
	}
	.form {
		max-width: 448px;
		height: 52px;
	}
	.marcas {
		max-width: 550px;
		bottom: 0;
	}
}
