/* login.css */
body {
	font-family: Arial, sans-serif;
	background-color: #fff;
	margin: 0;
	padding: 0;
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

#app {
	background-color: #fff;
	padding: 20px;
	border-radius: 5px;
	max-width: 400px;
	width: 100%;
	margin: 0 auto;
}

.title {
	text-align: center;
	font-size: 28px;
}

.link {
	color: #007AFF;
	padding: 8px;
	width: 100%;
	box-sizing: border-box;
	text-align: center;
	text-decoration: none;
	display: inline-block;
}

form {
	display: flex;
	flex-direction: column;
}

input {
	padding: 16px;
	width: 100%;
	box-sizing: border-box;
	background-color: #F5F5F5;
	border: none;
	border-radius: 5px;
	font-size: 16px;
}

button[type="submit"] {
	padding: 16px;
	width: 100%;
	background-color: #007AFF;
	color: white;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
}

@media only screen and (max-width: 800px) {

	input[type="text"],
	input[type="password"],
	button[type="submit"] {
		width: 100%;
	}
}