@viewport {
	width: device-width;
	zoom: 1;
}

html,
body {
	padding: 0;
	margin: 0;
	font: 14px Arial, Helvetica, sans-serif;

	color: #333;
	text-align: center;
	display: flex;
	justify-content: center;
	align-items: center;

}

.logo {
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 100%;
}
.error {
	position: relative;
	display: flex;
	color: #ff3300;
	font: 20px;
	font-weight : bold;
	justify-content: center;
	align-items: center;
	width: 100%;
}

.link {
	position: relative;
	display: flex;
	justify-content: center;
}

h1 {
	margin: 0;
	margin-bottom: 20px;
	font-size: 24px;
}

form {
	padding: 30px;
	background: #4285F4;
/*	border: 2px solid rgb(255, 0, 0);*/
	width: 300px;
	margin: 20px auto;
}

input {
	border: none;
	padding: 10px;
	margin: 10px;
	display: block;
	width: 90%;
}

a {
	padding: 20px;
	width: 60px;
	margin: 30px auto;
}

button {
	background-color: rgb(234, 234, 234);
	color: black;
	padding: 6px;
	cursor: pointer;
	border: none;
	margin-top: 10px;
	text-transform: uppercase;
}

#container {
	position: relative;
	justify-content: center;
	align-items: center;
	height: 100%;
	width: 50%;
}

#container_login {
	display: grid;
	grid-template-rows: 5% 40% 5% 50%;
	grid-template-columns: 25% 50% 25%;
	grid-gap: 5px;
}

.logoin {

	grid-row-start: 2;
	grid-row-end: 2;
	grid-column-start: 2;
	grid-column-end: 2;
}

.loginl {
	grid-row-start:4;
	grid-row-end: 4;
	grid-column-start: 2;
	grid-column-end: 2;
}

img {
	-ms-interpolation-mode: bicubic;
	border: 0;
	height: auto;
	max-width: 100%;
	vertical-align: middle;
}