/* Panteia CSS
	oranje: #F47C22 => rgb(244,124,34)
	rood-oranje:#FF5733 => rgb(71,22,0)
	licht-blauw:#4994CE => rgb(73,148,206) */
:root {
	--orange:#F47C22;
	--red-orange:#FF5733;
	--blue-light:#4994CE;
	--black:#333;
	--white-grey:#f5f5f5;
	--white:#fff;
}
/* inloggen */
html,body { height:100%; }
body { align-items:center; background-color:var(--white-grey); display:flex; padding-top:0; padding-bottom:100px; }
.login-h1 { color:var(--blue-light); }
.form-signin { margin:auto; max-width:400px; padding:15px; width:100%; }
.form-signin .form-floating:focus-within { z-index:2; }
.form-signin input[type="email"] { margin-bottom:-1px; border-bottom-right-radius:0; border-bottom-left-radius:0; }
.form-signin input[type="password"] { margin-bottom:10px; border-top-left-radius:0; border-top-right-radius:0; }
.block-icon { margin:0 auto; text-align:center; width:25%; }
.alert, .alert ul { text-align:left !important; }
.alert ul { margin-top:20px; }
/* error-messages in home */
.help-block { color:var(--red-orange); display:block; margin-bottom:10px; text-align:left !important; }
input.form-control.error {
	background-position:right calc(.375em + .1875rem) center;
	background-repeat:no-repeat;
	background-size:calc(.75em + .375rem) calc(.75em + .375rem);
	padding-right:calc(1.5em + .75rem);
}
input.form-control.error {
	background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='none' stroke='%23dc3545' viewBox='0 0 12 12'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
	border-color:var(--red-orange);
}