
body{
	margin: 0;
	padding: 0;
	font-family: sans-serif;
	background-color: white;
}
.topic{
	margin-top:14px;
	text-align:center;
	font-size:14px;
	color:#114;
}
.box{
	width: 300px;
	padding: 40px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	background: #ffe6e6;
	text-align: center;
    font-size: 18px;
    border-radius: 20px;
    box-shadow: 0 0 15px 6px #00000096;

}
.box h1{
	color: #114;
	font-weight: 700;
}
.box h2{
	color: #fff;
	font-weight: 400;
}
.box h3{
	color: black;
	font-weight: 300;
}
.box input[type ="text"],.box input[type = "password"]{
	border: 0;
	background: #FFFFE0;
	display: block;
	margin: 20px auto;
	text-align: center;
    font-size: 16px;
	border: 2px solid #3498db;
	padding: 10px 10px;
	width: 200px;
	outline: none;
	color: black;
	border-radius: 24px;
	transition: 0.25s;
}
.box input[type = "text"]:focus,.box input[type = "password"]:focus{
	width: 280px;
	border-color: #2ecc71;
}
.box input[type = "submit"]{
	border: 0;
	background: #114;
	display: block;
	margin: 24px auto;
	text-align: center;
    font-size: 16px;
	border: 1px solid yellow;
	width: 120px;
	padding: 8px 10px;
	outline: none;
	color: #fff;
	border-radius: 20px;
	transition: 0.25s;
	cursor: pointer;
	
}
.box input[type = "button"]{
	border: 0;
	background: blue;
	display: block;
	margin: 0px auto;
	text-align: center;
    font-size: 16px;
	width: 150px;
	padding: 8px 10px;
	outline: none;
	color: #fff;
	border-radius: 20px;
	transition: 0.25s;
	cursor: pointer;
	
}
.box input[type ="submit"]:hover{
	background: #2ecc71
}
.box input[type ="button"]:hover{
	background: red;
}
.box error{
color:red;
}
