@import url('https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap');
*{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: arial; 
#'Poppins', sans-serif;
}
body{
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #4070f4;
}
.wrapper{
	position: relative;
	max-width: 430px;
	width: 100%;
	background: #fff;
	padding: 34px;
	border-radius: 6px;
	box-shadow: 0 5px 10px rgba(0,0,0,0.2);
	margin-top: 1vh;
	margin-bottom: 2vh;
	max-height: 97vh;
	overflow-y: auto;
}
.wrapper h2{
	position: relative;
	font-size: 22px;
	font-weight: 600;
	color: #333;
}
.wrapper h2::before{
	content: '';
	position: absolute;
	left: 0;
	bottom: 0;
	height: 3px;
	width: 28px;
	border-radius: 12px;
	background: #4070f4;
}
.wrapper form{
	margin-top: 30px;
}
.wrapper form .input-box{
	height: 52px;
	margin: 18px 0;
}
form .input-box input{
	height: 100%;
	width: 100%;
	outline: none;
	padding: 0 15px;
	font-size: 17px;
	font-weight: 400;
	color: #333;
	border: 1.5px solid #C7BEBE;
	border-bottom-width: 2.5px;
	border-radius: 6px;
	transition: all 0.3s ease;
}
.input-box input:focus,
.input-box input:valid{
	border-color: #4070f4;
}
form .policy{
	display: flex;
	align-items: center;
}
form h3{
	color: #707070;
	font-size: 14px;
	font-weight: 500;
	margin-left: 10px;
}
.input-box.button input{
	color: #fff;
	letter-spacing: 1px;
	border: none;
	background: #4070f4;
	cursor: pointer;
}
.input-box.button input:hover{
	background: #0e4bf1;
}
form .text h3{
	color: #333;
	width: 100%;
	text-align: center;
}
form .text h3 a{
	color: #4070f4;
	text-decoration: none;
}
form .text h3 a:hover{
	text-decoration: underline;
}
.error{
	color: red;
}
.bold, .summary, strong {
	font-weight: bold;
}
tr.summary td {
	background: #ffecd5;
}
em {
	font-style: italic;
}
table {
	border-collapse: separate;
	font-size: 12px;
	line-height: 5px;
	margin: 30px auto;
	text-align: left;
	width: 800px;
	--main-color: #4070f4;
}
tbody {
	border-radius: 5px;
}
th {
	background: var(--main-color);
	color: #fff;
	font-weight: bold;
	padding: 10px 15px;
	position: relative;
	border-radius: 5px;
}
th:after {
	content: '';
	display: block;
	height: 25%;
	left: 0;
	margin: 1px 0 0 0;
	position: absolute;
	top: 25%;
	width: 100%;
}
td {
	padding: 10px 15px;
	position: relative;
	transition: all 300ms;
	border-radius: 5px;
}
tr:not(.summary):not(:hover):nth-child(odd) td {
	background: #f1f1f1;
}
tbody1:hover td {
	color: transparent;
	text-shadow: 0 0 3px #aaa;
}
tbody1:hover tr:hover td {
	color: #444;
}
tr:hover td {
	background-color: rgb(from var(--main-color) r g b /35%);
}
.wrapper.info {
	max-width: 750px;
}
.info p {
	padding: 10px 0;
}
ul {
	padding-left: 20px;
}
.wrapper.table {
	max-width: 900px;
}