@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');
:root {
	--border-radius: 15px;
	--shadow: 0 0 50px -25px #00000050;
}

@keyframes conf {
	from {
		opacity:0;
		transform: translatey(50px);
	} to {
		opacity:1;
		transform: translatey(0px);
	}
}

body {
	font-family: "Montserrat", sans-serif;
	font-optical-sizing: auto;
	font-weight: normal;
	font-style: normal;
}

p { margin:.4em}

header {
	box-shadow: var(--shadow);
}

.border__round {
	opacity: 0;
	border-radius: var(--border-radius);
	animation: conf 1s 1s ease-in-out forwards;
	box-shadow: var(--shadow);
	width: clamp(350px, 100%, 600px);

}

.border__round > *:first-child {
	border-radius: var(--border-radius) var(--border-radius) 0 0;
}

.border__round > *:last-child {
	border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.conf__webcast {
	font-size: 26px;
	padding: .5em 1em;
}

.conf__date {
	font-size: 26px;
	padding: .5em 1em;
}

.conf__author {
	margin: 0.2em;
	font-size: 30px;
}

.conf__title, .conf__subtitle {
	padding: 10px 25px;	
}

.wp-block-separator {
	margin: 8px 25px;
	border-width: 1px;
}

input {
	padding: 10px 5px;
	border-width: 0 0 1px 0;
	font-family: "Montserrat", sans-serif;
	font-size:16px;
	width:100%;
}

input[type="submit"] {
	width: initial;
	border: none;
	cursor: pointer;
	padding: 10px 20px;
	background: var(--wp--preset--color--cv-blue);
	color: #fff;
	border-radius: calc(var(--border-radius));
	transition: all .5s ease-in-out;
}

input[type="submit"]:hover {
	background: var(--wp--preset--color--cv-green);
}

input[type="checkbox"] {
	width: initial;
}

#nil {
	margin: 1em auto;
}

footer {
	margin-top: 0;
	border-top: 1px solid lightgray;
	padding: 15px 0;
}

footer p {
	font-size: 12px;
	margin-top: 0;
}

.sponsor-logo {
	margin: 15px 0;
	mix-blend-mode: multiply;
}


.wpcf7-form.show {
	display:block;
} 

.hidden {
	display: none!important;
}

@media only screen and (max-width: 600px) {
	.conf__title {
		font-size:1.5em;
	}
	.conf__subtitle {
		font-size: 1.25em;
	}
	.conf__author {
		font-size: 1.3em;
	}
	.conf__webcast,
	.conf__date {
		font-size:1.3em;
	}
}
}