* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: #b3dcfc;
}
.container {
	width: 760px;
	height: auto;
    padding: 2px 2px 2px 2px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	border-radius: 8px;
	border-style: solid;
    border-width: 2px;
    border-color: #030987;
    margin-left: 400px;
}
.container h6{
	font-size: 16px;
	color: #121212;
	font-family: sans-serif;
	text-transform: uppercase;
}
.container form{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 12px;
}
form .input_fields{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
}
.input_fields input{
	max-width: 4%;
	height: 28px;
	text-align: center;
	border-radius: 2px;
	border: none;
	background: #d0f1f7;
	font-size: 18px;
}
.input_fields input::-webkit-inner-spin-button,
.input_fields input::-webkit-outer-spin-button{
	display: none;
}
.input_fields input:focus{
	outline: 2px solid #071cdb;
	outline-offset: 2px;
}
form button{
	margin-top: 25px;
	width: 100%;
	background: #e9d585;
	color: #525252;
	font-size: 18px;
	font-weight: 600;
	padding: 8px 0;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	pointer-events: none;
	transition: all 0.2s ease;
}
form button.active{
	background: #738ef0;
	pointer-events: auto;
	color: #000;
}
form button:hover{
	background: #e6b801;
}