body {
	background-color: #152335;
	margin: 0;
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
}

div {
	display: grid;
	width: fit-content;
	place-items: center;
	margin: 0 auto;
	padding: 10px;
}

.home {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.titleBox {
	font-size: 50px;
	color: #2daa67;
}

::selection {
	color: #fff;
	background: #2daa67;
}

.inputBox form {
	display: flex;
	width: 100%;
	align-items: center;
	height: 100%;
}


.inputBox {
	width: 580px;
	max-width: 90vw;
	height: 44px;
	border: 1px solid #2b4052;
	border-radius: 24px;
	background: #23374a;
	box-shadow: none;
	display: flex;
	align-items: center;
	position: relative;
	transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.inputBox input {
	border: none;
	outline: none;
	flex: 1;
	font-size: 16px;
	font-family: arial, sans-serif;
	color: #fff;
	background: transparent;
	padding: 0 20px;

}
