* {
	margin: 0;
	padding: 0;
}

body {
	background-image: linear-gradient(to right, rgb(25, 28, 40), rgb(19, 12, 15));
	color: white;
	font-family: Inter-Regular, "Helvetica Neue", Helvetica, Roboto, Arial,
		sans-serif;
	text-align: center;
}

body > div {
	background-image: linear-gradient(to right, rgb(25, 28, 40), rgb(19, 12, 15));
}

#container {
	width: 100%;
}

nav {
	display: flex;
	font-family: Arial, Helvetica, sans-serif;
	width: 100%;
	margin: auto;
	font-weight: bolder;
	justify-content: space-around;
	background-color: black;
	height: 50px;
	align-items: center;
}

#mid {
	justify-content: space-around;
	display: flex;
	width: 30%;
}

#last {
	display: flex;
	justify-content: space-around;
	width: 30%;
}

#logo {
	width: 20%;
}

#logo > a > img {
	width: 50%;
	justify-content: center;
	margin-left: 10px;
}

nav > div > a {
	color: #b6b7b9;
	text-decoration: none;
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bolder;
}

a:hover {
	color: white;
}
#main {
	width: 90%;
	max-width: 400px;
	margin: auto;
	margin-top: 70px;
	box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
	padding: 20px;
	border-radius: 15px;
}

#main>h1 {
	text-align: center;
	margin-bottom: 20px;
}

form {
	width: 100%;
	text-align: left;
}

form input {
	width: 100%;
	padding: 10px;
	border: none;
	border-radius: 10px;
	margin-bottom: 10px;
	margin-top: 10px;
}

button {
	background: #ffffff;
	border: none;
	border-radius: 6px;
	box-shadow: rgba(0, 0, 0, 0.1) 1px 2px 4px;
	box-sizing: border-box;
	color: #ff4742;
	cursor: pointer;
	padding: 10px 12px;
	text-align: center;
	margin-top: 30px;
	font-weight: 900;
	display: block;
	margin: auto;
	margin-bottom: 20px;
	margin-top: 20px;
	width: 100%;
	max-width: 200px;
}

button:hover,
button:active {
	background-color: white;
	background-position: 0 0;
	color: #000000;
}

button:active {
	opacity: 0.5;
}

@media (max-width: 768px) {

	/* Adjustments for tablet devices */
	#main {
		width: 80%;
		max-width: 500px;
	}

	button {
		max-width: 150px;
	}
}

@media (max-width: 480px) {

	/* Adjustments for mobile devices */
	#main {
		width: 90%;
		max-width: 100%;
		margin-top: 30px;
	}

	form input {
		padding: 8px;
	}

	button {
		max-width: 120px;
	}
}