body {
	background: #fafafa;
}

.content__box {
	padding-top: calc(var(--topbar-height) + 50px);
}

.login__box {
	padding: 45px;
	background: #ffffff;
	border-radius: 50px;
	box-shadow: 0px 0px 200px #00000010;
}

.auth__actions {
	margin-top: 20px !important;

}

.login__header {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 20px;
}

.login__header p {
	font-size: 10pt;
	font-weight: 300;
	color: #343a4050;
	cursor: pointer;

	transition: all 300ms ease;

	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 0px;
	gap: 15px;
}

.login__header p svg {
	opacity: .5;
}

.login__header p:hover {
	color: #343a40;
}

/* TITLE */

.login__title {
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	align-items: stretch;
	gap: 5px;
}

.login__title h1 {
	font-size: 20pt;
	font-weight: 400;
	margin-bottom: 10px;
}

.login__title p {
	font-size: 12pt;
	font-weight: 300;
	color: #343a4080;
	margin-bottom: 0px;
}

.login__title hr {
	margin: 20px 0px 30px 0px;
	border-color: #343a4010;
	opacity: .5;
}

.auth__links {
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 15px;
}

/* LINKS */

.auth__links p {
	font-size: 10pt;
	margin-bottom: 0px;
	font-weight: 300;
	color: #343a4080;
	cursor: pointer;
	transition: all 300ms ease;
}

.auth__links p:hover {
	color: #343a40;
}

/* INPUT */

.input__box .input__item {
	border-radius: 20px;
}

.input__box .input__item input {
	padding: 10px 0px;
}

/* ACTIONS */

.auth__actions {
	display: flex;
	justify-content: flex-start;
	flex-direction: column;
	align-items: stretch;
	gap: 20px;
}

.auth__actions button {
	padding: 15px 0px;
	border-radius: 20px;
	background: var(--color-primary);
	transition: all 300ms ease;
	color: #ffffff;
	font-weight: 600;
	font-size: 12pt;
	border: none;
}

.auth__actions button:hover {
	filter: brightness(0.95);
}

.auth__actions p {
	text-align: center;
	font-size: 11pt;
	font-weight: 300;
	color: #343a40ac;
	margin-bottom: 0px !important;
}

.auth__actions p b {
	color: var(--color-primary);
	transition: all 300ms ease;
	font-weight: 400;
	cursor: pointer;
}

.auth__actions p b:hover {
	color: #237857;
}

/* PASS CHECK */

.password__checks {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.password__checks li {
    margin: 5px 0;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: center;
}

.password__checks li i {
    margin-right: 8px;
    color: #e74c3c; /* Vermelho para falha */
}

.password__checks li.valid i {
    color: #2ecc71; /* Verde para sucesso */
}


/* INPUT CODE */

.input__code {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
	gap: 5px;
}

.input__code input {
	width: 100%;
	padding: 15px 0px;
	text-align: center;
	font-weight: 500;
	font-size: 15pt;
	border: 1px solid #343a4020;
	border-radius: 15px;
	text-transform: uppercase;
}

.input__code input:focus {
	outline: none !important;
	border-color: #343a4050;
}

/* BACKDROP */

#backdrop {
	width: 100vw;
	height: 100vh;
	font-size: 5rem;
	color: #343a4050;
	background: #00000005;
	backdrop-filter: blur(5px);
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	justify-content: center;
	align-items: center;
	z-index: 10000;
}