div.form_page{
	background-color: white;
	box-shadow: 0px 0px 5px 0px #ccc;
	max-width: 350px;
	margin: 20px auto 0px;
	border-radius: 4px;
	padding: 25px;
}









input[type=checkbox],input[type=radio]{
	accent-color: var(--brand-color);
}

input[type=button],
input[type=submit]{
	background-color: var(--brand-color);
	color: white;
	font-size: 20px;
	font-family: arial;
	border: 0px;
	padding: 10px 16px;
	cursor: pointer;
}

input[type=button]:hover,
input[type=submit]:hover{
	background-color: var(--brand-hover-color);
}

input[type=button][disabled],
input[type=submit][disabled]{
	background-color: #ccc;
	cursor: default;
}

input[type=text],
input[type=password],
textarea,
select{
	border: 1px solid #ccc;
	font-family: arial;
	font-size: 14px;
	padding: 8px;
	box-sizing: border-box;
	width: 100%;
}

textarea{
	height: 100px;
	resize: none;
}









div.form{
	margin-top: 15px;
}

div.form li:not(:first-child){
	margin-top: 15px;
}

div.form label{
	margin-bottom: 5px;
	display: block;
	font-size: 16px;
	font-weight: bold;
}

div.form div.buttons{
	margin-top: 15px;
}

div.form li.double_text input[type=text]{
	width: 48%;
}

div.form li.double_text input[type=text]:last-child{
	margin-left: 1%;
}










div.form_links{
	margin-top: 15px;
}

div.form_links a{
	text-decoration: none;
	color: #555;
	font-size: 16px;
	display: inline-block;
}

div.form_links a{
	padding-right: 10px;
}

div.form_links a:not(:first-child){
	padding-left: 14px;
	border-left: 1px solid #777;
}

div.form_links a:hover{
	text-decoration: underline;
}