*{
	box-sizing: border-box;
	margin: 0;
	padding: 0;
}

body{
	background: #ffffff;
	position: relative;
	width: 100vw;
	height: 100vh;
	overflow: hidden;
}

.container{
	position: absolute;
	width: 400px;
	overflow-y: hidden;
	top: 50px;
	left: 50%;
	transform: translateX(-50%);
	background: #030f31;
	border: none;
	border-radius: 12px;
	box-shadow: 0 0 7px rgba(0,0,0,0.5);
}

@media(max-width: 700px){
	.container{
		width: 320px;
	}
	.logo{
		width: 310px;
	}
}

.login{
	margin: 20px;
	background: none;
	color: white;
}
.input{
	display: flex;
	align-items: center;
	justify-content: left;
	width: 100%;
	height: 32px;
	background: white;
	color: #222222;
	border: none;
	border-radius: 4px;
	margin: 5px 0;
	padding: 3px;
	outline: none;

}

.input:focus{
	border: none;
}

.title{
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.btn-login{
	width: 100%;
	min-height: 100px;
	margin: 0;
	background: #f1f1f1 url('../img/bg_ung.jpg') 0 0 repeat-x;
	border: none;
}

.btn-login input[type='submit']{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 36px;
	color: white;
	font-weight: bold;
	background: #33cc99;
	margin: 10px auto;
	border: none;
	border-radius: 4px;
	outline: none;
}

.btn-login input[type='submit']:focus{
	border: none;
}

.toogle-pwd{
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 20px 0;
	color: #e5e5e5;
	font-size: 12px;
}

#result{
	width: 100%;
}

.alert{
	display: flex;
	width: 80%;
	padding: 12px;
	margin: 0 auto;
	background: red;
	color: white;
	text-align: center;
	justify-content: center;
	border-radius: 7px;

}

a,link{
	color: #222222;
	text-decoration: none;
	cursor: pointer;
}