@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&display=swap');

* {
	box-sizing: border-box;	
	font-family: "Open Sans", sans-serif;
}

html {
	font-size: 16px;
}

body {
	margin: 0;
	padding: 0;
}

#header img {
	width: 100%;
}

#content {
	padding: 40px 10% 200px 10%;	
}

h1 {
	color: #133CE8;
	font-weight: bold;
	font-size: 2.5rem;
}

p {
	text-align: justify;	
}

form {
	margin-top: 40px;	
}

table {
	border-collapse: collapse;	
}
th, td {
	border: solid 1px #333;
	padding: 10px;
	font-size: 0.8rem;
}

ul {
	list-style-type: none;
	margin: 0;
	padding: 0;
	width: 100%;
	display: flex;
	flex-direction: row;
	gap: 40px;
	flex-wrap: wrap;
	justify-content: space-between;
}
	ul li {
		width: calc(50% - 40px);
		display: flex;
		flex-direction: column;
		justify-content: end;
	}
	ul li:last-child,
	ul li.full {
		width: 100%;
	}
	ul li:last-child label {
		display: flex;
		flex-direction: row;
		gap: 10px;
		font-size: 1rem;
	}

label {
	font-weight: bold;
	color: #133CE8;
	font-size: 1.5rem;
	margin-bottom: 10px;
	margin-left: 10px;
}
label.wd {
	margin-bottom: 0;	
}

input[type="text"],
input[type="email"],
input[type="submit"],
input[type="password"]{
	width: 100%;
	padding: 10px 20px;
	border: solid 1px #BCBCBC;
	border-radius: 73px;
	outline: 0;
	font-size: 2rem;
}

input[type="submit"] {
	background: #EFA734;
	color: #FFF;
	font-weight: bold;
	border: solid 1px #EFA734;
	cursor: pointer;
}

.message {
	width: 100%;
	padding: 20px;
	text-align: center;
	border: solid 2px #000;
	color: #333;
}
	.message.message-success {
		border: solid 2px #3ebd61;
		background-color: rgba(62, 189, 97,0.2);
	}
	.message.message-error {
	  	background-color: rgba(236, 77, 43, 0.2);
	  	border:2px solid #EC4D2B;
	}
	.message.message-info {
	  	background-color: #EFF;
	  	border:2px solid #DEE;
	}
.field-error {
	display: block;	
	color: #EC4D2B;
	text-align: center;
	width: 100%;
	font-weight: bold;
}

.form-submit {
	display: flex;
	justify-content: start;
	gap: 10px;
	width: 100%;
}

.logos {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 40px;
}
	.logos img {
		max-width: 100%;	
	}
.label-description {
	font-size: 0.6rem;
	color: #133CE8;
	margin-bottom: 10px;
	margin-left: 10px;
}
.tc {
	text-align: center;
}
@media only screen and (max-width: 1280px) {
	html {
		font-size: 16px;
	}
	ul {
		gap: 20px;	
	}
	ul li {
		width: calc(50% - 20px);	
	}
	h1 {
		font-size: 1.5rem;	
	}
	h2 {
		font-size: 1.1rem;	
	}
	label {
		font-size: 1rem;	
	}
	input[type="text"], input[type="email"], input[type="submit"] {
		font-size: 1rem;	
	}
	#content {
		padding-top: 20px;	
	}
}

@media only screen and (max-width: 980px) {
	html {
		font-size: 14px;
	}
}

@media only screen and (max-width: 720px) {
	html {
		font-size: 12px;
	}
	ul {
		gap: 10px;	
	}
	ul li {
		width: 100%;
	}
	h1 {
		font-size: 1.5rem;	
	}
	h2 {
		font-size: 1.1rem;	
	}
	label {
		font-size: 1rem;	
	}
	input[type="text"], input[type="email"], input[type="submit"] {
		font-size: 1rem;	
	}
	#content {
		padding-top: 20px;	
	}
}