.top-container {
	 display: flex;
	flex-direction: column;
	align-items: center;
	position: absolute;
	top: 33.33%; /* Moves the content to 1/3 of the screen from the top */
	left: 50%;
	transform: translate(-50%, -33.33%); /* Centers horizontally while keeping 1/3 from the top */
	text-align: center;
}

.logo-icon {
	margin-bottom: 20px; /* Space between the logo and the buttons */
}

.input-row {
	display: block;
	width:100vw;
	text-align:center;
	align-items: center;
}

.input-text {
	width:400px;
	padding:10px;
	font-size:14px;
	text-align:center;
	margin:20px auto;
}

.input-field {
	height:40px;
	width:400px;
	background:white;
	border:1px solid #eeeeee;
	border-radius:10px;
	clear:both;
	display:block;
	margin:20px auto;
	padding-left:5px;
	font-size:18px;
}

.submit-button {
	height:40px;
	width:400px;
	background:green;
	color:white;
	border:2px solid green;
	border-radius:10px;
	clear:both;
	display:block;
	margin:20px auto;
	transition:0.3s all ease;
}

.submit-button:hover {
	background:white;
	color:green;
	border:2px solid green;
}


.button-row {
	display: block;
	width:100vw;
	text-align:center;
	align-items: center;
}

.logo-icon {
	display:block;
	clear:both;
	margin:0 0 40px 0;
	width:200px;
}

.store-icon {
	margin: 0 10px;
	width:200px;
	height:auto;
	max-width: calc(50vw - 40px);
	text-decoration:none;
}

a {
	text-decoration:none;
}