/* ubuntu-regular - latin */
@font-face {
  font-display: swap; /* Check https://developer.mozilla.org/en-US/docs/Web/CSS/@font-face/font-display for other options. */
  font-family: 'Ubuntu';
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/ubuntu-v20-latin-regular.woff2') format('woff2'); /* Chrome 36+, Opera 23+, Firefox 39+, Safari 12+, iOS 10+ */
}
*{
	margin: 0;
	padding: 0;
}
body{
	font-family: 'Ubuntu', 'Arial', sans-serif;
	background: #F1F1F9;
	color: #003761;
}
h1{
	font-size: 1.3rem;
	padding-bottom: .5rem;
}
header.flex-wrapper{
	background: #003761;
	color: #fff;
	height:54px;
	gap: 20px;
	justify-content: center;
}
header a{
	color: #fff;
	text-decoration: none;
}
main .inhalt{
	background: #fff;
	box-sizing: border-box;
	width: 92%;
	max-width: 800px;
	box-shadow: 0 2px 40px 0 rgba(0, 0, 0, 0.25);
	border-radius: 20px;
	margin: 0 auto;
	padding: 2.75rem;
}
main .form{
	margin-top: 25px;
}
main .form label{
	display: block;
	padding-bottom: .25rem;
}
main .form input{
	background: #e3e3f3;
	border: 1px solid #fff;
	padding: .5rem .75rem;
	font-size: 1rem;
	line-height: 1.5rem;
	width: 100%;
	box-sizing: border-box;
}
main .form input[type="submit"],
main .form button{
	padding: .75rem 1.75rem;
	background: #003761;
	color: #fff;
	width: fit-content;
	font-family: 'Ubuntu', 'Arial', sans-serif;
	font-size: 1rem;
	cursor: pointer;
}
main .form input:focus{
	border-color: #2563eb;
    outline: 2px solid transparent;
    outline-offset: 2px;
}
main .form .cr_form-inputgroup--typecheckbox{
	display: flex;
	align-items: flex-start;
	gap: 5px;
}
main .form input[type=checkbox]{
	width: auto;
	margin-top: 2px;
}
main .form .editable_content > div{
	margin-bottom: 1rem;
}
main .logo{
	margin-left: calc((100% - 800px) / 2);
	display: block;
	margin-top: 30px;
	margin-bottom: 30px;
}
.flex-wrapper{
	display: flex;
	justify-content: space-between;
	align-items: center;
}
.clever_form_error{background-color:#f99; color:#000; border:1px solid #f22 !important}
.clever_form_note {margin:26px 0 0 3px;position:absolute;display:inline; padding: 2px 4px; font-weight:bold;background-color:#f2ecb5; color:#000; font-size:12px !important;  }

@media only screen and  (max-width: 870px) {
	main .logo{
		margin-left: 4%;
	}
	main .logo img{
		width: 150px;
	}
}
