html {
	font-size: 100%;
	box-sizing: inherit;
	scroll-behavior: smooth;
	/*height: -webkit-fill-available;*/
}

body {
	font-family: "Arial", ui-sans-serif, system-ui, -apple-system, sans-serif;
	font-size: 110%;
	font-weight: 400;
	line-height: 1.5;
	/*height: -webkit-fill-available;*/
}
header{
	box-shadow: rgba(9, 30, 66, 0.25) 0px 4px 8px -2px, rgba(9, 30, 66, 0.08) 0px 0px 0px 1px;
}

*,
*::before,
*::after {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	list-style: none;
	list-style-type: none;
	text-decoration: none;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	text-rendering: optimizeLegibility;
}


html {
	scroll-behavior: smooth!important;
	height: 100%;
}
body {
	margin: 0;
	padding: 0;
	height: 100%;
	font-family: "Rubik", ui-sans-serif, system-ui, -apple-system, sans-serif;
	font-size: 14px;
	margin-bottom: 100px;
}
*{
	font-family: "Rubik", ui-sans-serif, system-ui, -apple-system, sans-serif;
}

.container {
	max-width: 75rem;
	height: auto;
	margin: 0 auto;
	padding: 1.25rem;
}

[type=text],input[type=number],input[type=url],input[type=email],input[type=tel],input[type=password],input[type=datetime-local], textarea, select, .inputs{

	background-color: white;
	padding: 0px 1em;
	border-radius: 5px;
	height: 2.5em;
	border: 1px solid rgb(200, 200, 200);
	font-size:16px;
	width: 100%;
}
textarea{
	padding-top: 10px!important;
}

input[type=button], input[type=submit], .buttons {
	background-color: #F87575;
	color: white;
	border: 0;
	padding: 10px 60px;
	border-radius: 5px;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 5px;
	cursor: pointer;
	font-size:16px;
	box-shadow: 0px 0px 0px grey;
}



input[type=button]:hover, input[type=submit]:hover {
	opacity:0.8;
}

.input_container{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}














#thunderbird_and_outlook_container{
	display: flex; gap: 15px;flex-wrap: wrap;
}
.input_label{
	border: 0.5px solid #9d9d9d;
	display: flex;
	align-items: center;
	gap: 10px;
	width: fit-content;
	padding: 5px 10px;
	border-radius: 5px;
	background-color: lightgrey;
	font-weight: bold;
	cursor: pointer;
}
.input_label:hover{
	opacity: 0.5;
}
.input_label:has(input[type=radio]:checked){
	background-color: #45d443;
	opacity: 1;
	color: white;
}
.input_label img{
	width: 30px;
}
.input_label input{
	/*display: none;*/
}









#image_data{
	background-color: lightgrey;
	border: 2px dashed #919191;
	border-radius: 10px;
	padding: 20px;
	text-align: center;
	/*margin: 0 auto;*/
}