* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	display: flex;
	justify-content: center;
	align-items: center;
	min-height: 100vh;
	background: #000000;
}
#student{
          margin-top: 15px;
          width: 422px;
          height: 28px;
          border-style: solid;
          border-width: 1px;
          border-color: black;
          padding: 2px;
      }
.container1 {
	width: 810px;
	height: auto;
    padding: 20px 20px 20px 20px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
	border-radius: 15px;
	border-style: solid;
    border-width: 5px;
    border-color: #030987;
}
.container1 h6{
	font-size: 14px;
	color: #121212;
	font-family: sans-serif;
	text-transform: uppercase;
}
.container1 form{
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding-top: 20px;
}
form .input_fields{
	width: 70%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: space-evenly;
}
.input_fields input{
	max-width: 6%;
	height: 30px;
	text-align: center;
	border-radius: 3px;
	border: none;
	background: #d0f1f7;
	font-size: 20px;
}
.input_fields input::-webkit-inner-spin-button,
.input_fields input::-webkit-outer-spin-button{
	display: none;
}
.input_fields input:focus{
	outline: 3px solid #00b991;
	outline-offset: 2px;
}
form button{
	margin-top: 25px;
	width: 100%;
	background: #e9d585;
	color: #525252;
	font-size: 16px;
	font-weight: 600;
	padding: 10px 0;
	border: none;
	border-radius: 6px;
	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;
}