@charset "UTF-8";

*,
*::before,
*::after
{
	box-sizing: border-box;
	cursor: default;
}

*
{
	background-clip: padding-box;
	border: 0;
	color: inherit;
	cursor: inherit;
	font: inherit;
	line-height: inherit;
	margin: 0;
	outline: 0;
	padding: 0;
	position: relative;
	text-align: left;
	text-decoration: none;
	text-transform: none;
	vertical-align: baseline;
}

html,
body
{
	height: 100vh; height: 100dvh;
	min-height: 100vh; min-height: 100dvh;
	min-width: 100vw; min-width: 100dvw;
	width: 100vw; width: 100dvw;
}

body
{
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: normal;
	line-height: 1;
}

header
{
	height: 3rem;
}

a
{
	cursor: pointer;
}

label,
button > i::before
{
	cursor: pointer;
}

#logotipo
{
	height: 2rem;
}
html[data-bs-theme="light"] #logotipo
{
	filter: brightness(80%);
}
html[data-bs-theme="dark"] #logotipo
{
	filter: brightness(120%);
}

.composite-background
{
	background-color: transparent, #000;
	background-position: center, center;
	background-repeat: repeat, no-repeat;
	background-size: auto, cover;
}
.background-1
{
	background-image: url('resources/images/content-bg-cover.png'), url('resources/images/background-1.jpg');
	min-height: calc(100vh - 3rem); min-height: calc(100dvh - 3rem);
}
.background-2
{
	background-image: url('resources/images/content-bg-cover.png'), url('resources/images/background-2.jpg');
}
.background-3
{
	background-image: url('resources/images/content-bg-cover.png'), url('resources/images/background-3.jpg');
}

#logomarca
{
	width: 50%;
}

.textarea-no-resize
{
	resize: none;
}

#code-container
{
	background-position: left center, right center;
	background-repeat: no-repeat, no-repeat;
}
#code-container > div
{
	position: absolute;
	top: 0;
}
