@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 0 200px 0;	
}

.inner-content {
	padding-left: 6%;
	padding-right: 6%;
}

.full-wbg {
	background: #FBEFFF;
	padding-top: 20px;
	padding-bottom: 20px;
	margin-top: 40px;
	margin-bottom: 40px;
}

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

h2 {
	color: #0A337D;
	text-transform: uppercase;
	font-size: 2rem;
}

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.full {
		width: 100%;
	}

label {
	font-weight: bold;
	color: #133CE8;
	font-size: 1.5rem;
	margin-bottom: 10px;
	cursor: pointer;
}
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: 15px;
	outline: 0;
	font-size: 2rem;
}
input[type="checkbox"] {
	cursor: pointer;
	width: 15px;
	height: 15px;
}
input[type="checkbox"]:disabled {
	opacity: 0.6;
	cursor: not-allowed;
}
input[type="submit"] {
	background: #053B83;
	color: #FFF;
	font-weight: bold;
	border: solid 1px #053B83;
	cursor: pointer;
	margin-top: 20px;
	width: 100%;
	max-width: 400px;
}

.workshops-list {
	justify-content: flex-start;	
}
.workshops-list li {
	display: flex;
	flex-direction: row;
	align-items: start;
	justify-content: flex-start;
}
	.workshops-list label {
		color: #0A337D;
	}
	.workshops-list span {
		font-weight: bold;
	}
	.workshops-list li > div {
		padding-left: 10px;
	}

.ws-full label {
	cursor: not-allowed;
}
.ws-full > span {
	font-size: 2rem;	
}
.ws-full {
	opacity: 0.5;	
}

.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;
}

.vbadge {
	margin: 0 auto;
	width: 100%;
	max-width: 800px;
	text-align: center;
	padding: 0 20px 20px 20px;
	font-size: 1.3rem;
}
	.vbadge h2 {
		font-size: 1.5rem;	
	}
	.vbadge-profile-name {
		font-size: 1.5rem;
		margin-top: 20px;
		color: #133CE8;
		font-weight: bold;
	}
	.vbadge-workshop {
		text-align: left;
		border-left: solid 3px #133CE8;
		margin-bottom: 20px;
		padding-left: 10px;
	}
	.vbadge-workshop-title {
		font-weight: bold;
	}
	.vbadge-workshop-speaker {
		font-size: 1rem;	
	}

.status-feedback {
  margin-left: 8px;
  font-size: 0.9rem;
}

.status-feedback.saving {
  color: orange;
}

.status-feedback.saved {
  color: green;
}

.status-feedback.error {
  color: red;
}

@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;	
	}
}