body {
	background: #f5f5f9;
	margin: 0;
	font-family: monospace;
}

h1 {
	font-size: 24px;
	color: #4e86b7;		
	text-align: center;
}

h3 {
	color: #566a7f;
	font-size: 18px;
}
p {
	color: #566a7f;
	font-size: 12px;
}

.flex-box {
  display: flex;
  align-items: center;
  justify-content: center;
}

.container-box {
  height: 100vh;
}

.content-box {
	box-shadow: 0 2px 6px 0 rgba(67, 89, 113, .12);
	background: #ffffff;
	width: 30%;
	padding: 1rem;
	border-radius: 5px;
}

.form-input {
	padding: 0.5rem 0;
	width: 100%;
}

.form-input input {
	width: 100%;
	padding: 0.5rem 0;
	text-align: center;
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.50;
	color: #697a8d;
	background-color: #fff;
	background-clip: padding-box;
	border: 1px solid #d9dee3;
	appearance: none;
	border-radius: 0.375rem;
}

.form-input .btn { 
	color: #fff;
	background-color: #696cff;
	border-color: #696cff;
	box-shadow: 0 0.125rem 0.25rem 0 rgba(105, 108, 255, 0.4);
}		
.form-input .btn:hover { 
	color: #fff;
	font-weight: bold;
	background-color: #5f61e6;
	border-color: #5f61e6;
	transform: translateY(-2px);
	cursor: pointer;
}
.form-input .form-label {
	font-size: .75rem;
	text-transform: uppercase;
	letter-spacing: inherit;
}
.form-input .form-label {
	margin-bottom: 0.5rem;
	font-size: 0.75rem;
	font-weight: 500;
	color: #566a7f;
}
.form-input a {
	color: #696cff;
	text-decoration: none;
}
.content-between {
	display: flex;
	justify-content: space-between;
}

.input-view {
	display: flex;
	align-items: center;
	padding: 0.4375rem 0.875rem;
	font-size: 0.9375rem;
	font-weight: 400;
	line-height: 1.53;
	color: #697a8d;
	text-align: center;
	white-space: nowrap;
	position: absolute;
	right: 0rem;
	top: 0.5rem;
	z-index: 999999;
	cursor: pointer;
}
.input-password {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	align-items: stretch;
	width: 100%;
}

@media (max-width: 600px) {
	.container-box {
		height: 90vh;
	}
	.content-box {
		width: 80%;
	}
}