/* Google Font Link */
@import "https://fonts.googleapis.com/css?family=Poppins:300,400,500,600,700";

body {
	margin: 0;
	padding: 0;
	font-family: 'Poppins', sans-serif;
	background: #353b48;/*Cor: Noites Azuis*/
}
h4{
	font-family: 'Poppins', sans-serif;
}
h5{
	font-family: 'Poppins', sans-serif;
	font-weight: 400;
}
h6 {
	font-family: 'Poppins', sans-serif;
	font-weight: 100;
	margin: 0;
	padding: 0;
}
.container {
	font-family: 'Poppins', sans-serif;
	width: 100vw;
	height: 100vh;
	background: none;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}
.box {
	width: 450px;
	padding: 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: #353b48;/*Cor: Noites Azuis*/
	text-align: center;
	color: #fff;/*Cor: Branco Absoluto*/
	font-weight: 400;
	border: 2px solid #3498db;/*Cor: Peter River*/
	border-radius: 15px;
}

.box input[type="text"],.box input[type="password"]{
	font-family: 'Poppins', sans-serif;
	font-size: 15px;
	border: 0;
	background: none;
	display: block;
	margin: 20px auto;
	text-align: center;
	border: 2px solid #3498db;/*Cor: Peter River*/
	padding: 14px 10px;
	width: 220px;
	outline: none;
	color: #fff;/*Cor: Branco Absoluto*/
	border-radius: 24px;
	transition: 0.25s;
}

.box input[type="text"]:focus,.box input[type="password"]:focus{
	width: 280px;
	border-color: #48dbfb;/*Cor: Megaman*/
}
.box input[type="submit"]{
	font-family: 'Poppins', sans-serif;
	border: 0;
	background: none;
	display: block;
	margin: 20px auto;
	text-align: center;
	border: 2px solid #3498db;/*Cor: Peter River*/
	padding: 14px 40px;
	outline: none;
	color: #fff;/*Cor: Branco Absoluto*/
	border-radius: 24px;
	transition: 0.25s;
	cursor: pointer;
}
.box input[type="submit"]:hover{
	background: #3498db;/*Cor: Peter River*/
}
