* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

@font-face {
        font-family: 'Montserrat'; /* Choose a name for your font */
        src: url('../assets/fonts/Montserrat-Regular.ttf') format('truetype');
        font-weight: normal; /* Optional: define weight and style */
        font-style: normal;
}

* {	font-family: 'Montserrat', "Segoe UI"; }

body {
    min-height: 100vh;
    /*font-family: "Segoe UI", sans-serif;*/

    background: linear-gradient(
        180deg,
        #f7f4fc 0%,
        #ffffff 100%
    );

    display: flex;
    justify-content: center;
}

.container {
    width: 100%;
    max-width: 100%;
    max-height: 100vh;
    display: flex;
    justify-content: center;
}

.login-container-content {
    display: flex;
    justify-content: center;
}

.login-container {
	display: grid;
	align-content: start;
	padding: 20px;
    width: 400px;
}

.create-account-title {
	font-weight: bold;
    font-size: 1.5em;
    color: #24124d;
}

.logo-area {
    text-align: center;
    margin-bottom: 10px;
}

.logo-icon {
    font-size: 72px;
}

.logo-area h1 {
    font-size: 52px;
    color: #24124d;
    margin-bottom: 10px;
}

.logo-area p {
    color: #7a7a95;
    font-size: 18px;
    line-height: 1.4;
}

h2 {
    color: #24124d;
    margin-bottom: 25px;
}

.input-group {
    margin-bottom: 10px;
}

.input-group label {
    display: block;
    margin-bottom: 8px;
    color: #4b4b63;
    font-weight: 600;
}

.input-group input {
    width: 100%;
    height: 58px;

    border: 1px solid #d8d8e6;
    border-radius: 14px;

    padding: 10px;
    font-size: 16px;

    outline: none;
    transition: .3s;
}

.input-group input:focus {
    border-color: #6c3cf0;
    box-shadow: 0 0 0 4px rgba(108,60,240,.12);
}

.forgot-password {
    text-align: right;
    margin-bottom: 25px;
}

.forgot-password a {
    color: #6c3cf0;
    text-decoration: none;
}

.btn-primary {
    width: 100%;
    height: 60px;

    border: none;
    border-radius: 14px;

    background: linear-gradient(
        90deg,
        #6c3cf0,
        #4c1fd8
    );

    color: white;
    font-size: 18px;
    font-weight: 600;

    cursor: pointer;
}

.btn-primary:hover {
    opacity: .95;
}

.separator {
    display: flex;
    align-items: center;
    margin: 10px 0;
}

.separator::before,
.separator::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #ddd;
}

.separator span {
    margin: 0 15px;
    color: #777;
}

.btn-secondary {
    width: 100%;
    height: 60px;

    border: 2px solid #6c3cf0;
    border-radius: 14px;

    background: white;
    color: #6c3cf0;

    font-size: 18px;
    font-weight: 600;

    cursor: pointer;
}

.about-link {
    display: block;
    text-align: center;

    margin-top: 35px;

    color: #6c3cf0;
    font-weight: 600;
    text-decoration: none;
}

/* Toast Notification */

.toast {
    position: fixed;

    left: 50%;
    bottom: 30px;

    transform: translateX(-50%);

    min-width: 280px;
    max-width: 90%;

    padding: 16px 20px;

    background: #dc3545;
    color: #fff;

    border-radius: 12px;

    font-size: 15px;
    font-weight: 500;

    text-align: center;

    opacity: 0;
    visibility: hidden;

    transition:
        opacity .4s ease,
        visibility .4s ease,
        transform .4s ease;

    z-index: 9999;

    box-shadow:
        0 10px 30px rgba(0,0,0,.15);
}

.toast.show {
    opacity: 1;
    visibility: visible;

    transform: translateX(-50%) translateY(0);
}

.toast.success {
    background: #28a745;
}

.toast.error {
    background: #dc3545;
}

.toast.warning {
    background: #ff9800;
}

.error {
    border-color: #dc3545 !important;
}

/* Mouse pointer click effect */
div.clickEffect{
	position:fixed;
	box-sizing:border-box;
	border-style:solid;
	border-color:#000000;
	border-radius:50%;
	animation:clickEffect 0.4s ease-out;
	z-index:99999;
}
@keyframes clickEffect{
	0%{
		opacity:1;
		width:1px;
		height:1px;
		margin:-0.5px;
		border-width:0.5rem;
	}
	100%{
		opacity:0.2;
		width:40px;
		height:40px;
		margin:-20px;
		border-width:0.03rem;
	}
}

.registerReturn {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding: 5px;
    border-radius: 10px;
	text-align: center;
}

.errorMessage {
	border: 1px solid #ff0000;
	background-color: #ff000073;
}

.successMessage {
	border: 1px solid #004d06;
	background-color: #0080008c;
}

.displayNone {
	display: none;
}

/* ==========================
   USER PROFILE / ONBOARDING
   ========================== */

.progress-container {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    margin-bottom: 20px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.circle {
    width: 42px;
    height: 42px;

    border-radius: 50%;

    background: #e6e6ee;
    color: #666;

    display: flex;
    align-items: center;
    justify-content: center;

    font-weight: 600;
}

.step.completed .circle,
.step.active .circle {
    background: #6c3cf0;
    color: #fff;
}

.step span {
    margin-top: 10px;

    font-size: 14px;
    color: #7a7a95;

    text-align: center;
}

.step.active span {
    color: #6c3cf0;
    font-weight: 600;
}

.line {
    width: 60px;
    height: 3px;

    background: #e6e6ee;

    margin-top: 20px;
}

.line.active {
    background: #6c3cf0;
}

.page-title {
    font-size: 42px;
    font-weight: 700;
    color: #24124d;

    text-align: center;

    margin-bottom: 15px;
}

.page-description {
    color: #7a7a95;

    text-align: center;
    line-height: 1.6;

    margin-bottom: 10px;

    font-size: 18px;
}

.input-icon {
    position: relative;
}

.input-icon i {
    position: absolute;

    left: 18px;
    top: 50%;

    transform: translateY(-50%);

    color: #9ca3af;
}

.input-icon input {
    padding-left: 50px;
}

.security-note {
    display: flex;
    align-items: center;
    gap: 12px;

    margin: 10px 0;

    color: #7a7a95;
    line-height: 1.5;
}

.security-note i {
    color: #6c3cf0;
    font-size: 22px;
}

.btn-link {
    width: 100%;

    border: none;
    background: transparent;

    margin-top: 20px;

    color: #6c3cf0;
    font-size: 18px;
    font-weight: 600;

    cursor: pointer;
}

.btn-link:hover {
    opacity: .8;
}

/* ==========================
   REGISTER SUCCESS PAGE
   ========================== */

.success-icon-container {
    display: flex;
    justify-content: center;
}

.success-circle {
    width: 100px;
    height: 100px;

    border-radius: 50%;

    background: rgba(108, 60, 240, 0.05);

    display: flex;
    align-items: center;
    justify-content: center;
}

.success-check {
    width: 50px;
    height: 50px;

    border-radius: 50%;

    background: linear-gradient(
        90deg,
        #6c3cf0,
        #4c1fd8
    );

    display: flex;
    align-items: center;
    justify-content: center;
}

.success-check i {
    color: white;
    font-size: 30px;
}

.success-title {
    text-align: center;

    color: #24124d;

    font-size: 2.3em;
    font-weight: 700;
}

.success-description {
    text-align: center;

    color: #7a7a95;

    font-size: 1.2em;
    line-height: 1.7;
}

.success-description.secondary {
    margin-bottom: 15px;
}

.success-description strong {
    color: #6c3cf0;
}

.btn-primary i {
    margin-right: 10px;
}

.success-security {
    justify-content: center;
    text-align: center;

    margin-top: 40px;
    padding-bottom: 20px;
}

/* Top bar */
.TopBar {
    display: flex;
    padding-right: 5px;
    width: stretch;
    height: 50px;
    background-color: #efe3d8;
    box-sizing: border-box;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    justify-content: flex-start;
}

/* MENU */
.menu-container {
	float: left;
    width: 50px;
    height: 50px;
    background-image: url('../assets/img/icons/menu.webp');
    background-size: 60% 50%;
    background-repeat: no-repeat;
    background-position: center;
}
.dropdown-toggle {
	width: 50px;
	height: 50px;
	
	background-size: 60% 60%;
	background-repeat: no-repeat;
	background-position: center;
}
.dropdown-menu {
	position: absolute;
    z-index: 10;
    max-height: 0;
    overflow: auto;
    scrollbar-width: none;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.3s ease, opacity 0.2s ease, transform 0.2s ease;
    background-color: #4c1fd8;
}
.dropdown-menu.open {
	max-height: stretch;
    opacity: 1;
    transform: translateY(0);
    z-index: 51;
    /* margin-top: 5px; */
    padding: 5px;
}

.topBarMenuItem {
    height: 50px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    justify-content: space-between;
    padding-left: 10px;
    /* background-image: url(../assets/img/background/interface/menuItemList.webp); */
    /* background-size: 100% 100%; */
    /* background-repeat: no-repeat; */
    /* background-position: center; */
    background-color: #004d06e0;
    margin-bottom: 2px;
}

.menuItemContext {
	display: flex;
	align-items: center;
}

.topBarMenuItemText {
	height: 30px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
    font-weight: bold;
    font-size: larger;
    letter-spacing: 1px;
    color: #edc06b;
	pointer-events: none;
	margin-left: 5px;
}

.topBarMenuIconContainer {
	background-size: 100% 100%;
	background-repeat: no-repeat;
	background-position: center;
	width: 25px;
    height: 25px;
    margin: 5px;
	pointer-events: none;
	/*filter: drop-shadow(1px 0 0 gray) drop-shadow(-1px 0 0 gray) drop-shadow(0 1px 0 gray) drop-shadow(0 -1px 0 gray) contrast(125%) brightness(90%);*/
}

.topBarMenuAccessIcon {
    background-size: 50% 50%;
    background-repeat: no-repeat;
    background-position: center;
    width: 30px;
    height: 30px;
    pointer-events: none;
}

/* Top bar menu icons */
.icon-Install { background-image: url("../assets/img/icons/install.webp"); }
.icon-Logoff { background-image: url("../assets/img/icons/logoff.webp"); }

/* Main container */
.main-container{
    height: stretch;
    width: 100%;
}
.main-container-content {
    display: flex;
    flex-wrap: wrap;
}

/* Content */
.section {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 20px;
    flex-direction: row;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}
.slider-container {
    height: stretch;
    width: stretch;
    display: flex;
    overflow: auto;
    scrollbar-width: none;
    flex-wrap: nowrap;
}
.slider-content {
    min-height: 400px;
    display: flex;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    border-radius: 15px;
    min-width: 100%;
    width: 100%;
}
.section-text {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    text-align: center;
    gap: 20px;
    justify-content: center;
}
.banner {
    display: flex;
    width: 100%;
}
.banner-image {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 200px;
}

/* Features icons */
.icon-container{
    display: flex;
    width: 120px;
    gap: 10px;
    flex-wrap: wrap;
}
.icon-image-container {
    width: 120px;
    height: 120px;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
}
.icon-text-container {
    text-align: center;
}

/* Steps bio */
.bio-introduction {
    width: 100%;
    background-color: #F9EEE5;
    padding: 40px 60px;
    box-sizing: border-box;
}

.bio-introduction-container {
    max-width: 1200px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.bio-introduction-content {
    flex: 1;
    max-width: 650px;
}

.bio-introduction-title {
    color: #21613D;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.25;
    margin-bottom: 45px;
}

.bio-introduction-text {
    color: #2F2E2E;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.25;
}

.bio-introduction-image-container {
    width: 285px;
    height: 285px;
    flex-shrink: 0;

    border-radius: 50%;
    overflow: hidden;
}

.bio-introduction-image {
    width: 100%;
    height: 100%;
    display: block;

    object-fit: cover;
    object-position: center;
}

@media (max-width: 768px) {

    .bio-introduction {
        padding: 40px 25px;
    }

    .bio-introduction-container {
        flex-direction: column;
        gap: 30px;
        text-align: left;
    }

    .bio-introduction-content {
        max-width: none;
    }

    .bio-introduction-title {
        font-size: 21px;
        margin-bottom: 25px;
    }

    .bio-introduction-text {
        font-size: 15px;
    }

    .bio-introduction-image-container {
        width: 220px;
        height: 220px;
    }

}

.bio-step-section {
    width: 100%;
    background: transparent;
    box-sizing: border-box;
    padding: 35px 32px 45px;
    color: #000000;
}


/* ==========================================================
   INTRODUÇÃO
========================================================== */

.bio-step-introduction {
    width: 100%;
    max-width: 1150px;
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 70px;
}

.bio-step-introduction-content {
    flex: 1;
    /*max-width: 520px;*/
}


/* ---------- LABEL ---------- */

.bio-step-label {
    display: inline-block;

    padding: 6px 10px;

    background-color: #2F2E2E;
    color: #FFFFFF;

    border-radius: 20px;

    font-size: 12px;
    font-weight: 600;
    line-height: 1;

    margin-bottom: 25px;
}


/* ---------- TEXTO ---------- */

.bio-step-description {
    color: #000000;

    font-size: 16px;
    font-weight: 500;
    line-height: 1.35;

    margin-bottom: 30px;
}


/* ---------- BOTÃO ---------- */

.bio-step-button {
    width: 317px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: flex-start;

    gap: 12px;

    padding: 0 28px;

    box-sizing: border-box;

    background-color: #21613D;
    color: #F9EEE5;

    border-radius: 16px;

    text-decoration: none;

    font-size: 13px;
    font-weight: 500;

    transition: transform 0.2s ease,
                opacity 0.2s ease;
}

.bio-step-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.bio-step-button-icon {
    font-size: 25px;
    line-height: 1;
}


/* ---------- IMAGEM PRINCIPAL ---------- */

.bio-step-main-image {
    width: 305px;
    height: 305px;

    flex-shrink: 0;

    overflow: hidden;

    margin-bottom: 30px;
}

.bio-step-main-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* ==========================================================
   COMO FAZER
========================================================== */

.bio-step-howto {
    width: 100%;
    max-width: 1150px;

    margin: 55px auto 0;
}


/* ---------- TÍTULO ---------- */

.bio-step-section-title {
    width: 100%;

    display: flex;
    align-items: center;

    gap: 15px;

    margin-bottom: 42px;
}

.bio-step-section-line {
    flex: 1;

    height: 1px;

    background-color: #D9D1C9;
}

.bio-step-section-title-text {
    flex-shrink: 0;

    font-size: 20px;
    font-weight: 700;

    white-space: nowrap;
}


/* ==========================================================
   LISTA DE ETAPAS
========================================================== */

.bio-step-list {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(3, 1fr);

    gap: 28px;
}


/* ---------- ITEM ---------- */

.bio-step-item {
    min-width: 0;
}


/* ---------- TÍTULO DA ETAPA ---------- */

.bio-step-item-title {
    min-height: 42px;

    display: flex;
    align-items: center;

    gap: 10px;

    margin-bottom: 12px;
}


/* ---------- NÚMERO ---------- */

.bio-step-number {
    width: 24px;
    height: 24px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    background-color: #21613D;
    color: #F9EEE5;

    border-radius: 50%;

    font-size: 13px;
    font-weight: 700;
}


/* ---------- TÍTULO ---------- */

.bio-step-item-title-text {
    font-size: 16px;
    font-weight: 700;
    line-height: 1.05;
}


/* ---------- IMAGEM ---------- */

.bio-step-item-image {
    width: 100%;

    aspect-ratio: 1.55 / 1;

    overflow: hidden;

    border-radius: 12px;

    margin-bottom: 12px;
}

.bio-step-item-image img {
    width: 100%;
    height: 100%;

    display: block;

    object-fit: cover;
}


/* ---------- DESCRIÇÃO ---------- */

.bio-step-item-description {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.25;
}


/* ==========================================================
   TUDO CERTO
========================================================== */

.bio-step-complete {
    width: 100%;
    max-width: 332px;

    min-height: 68px;

    margin: 42px auto 0;

    padding: 10px 15px 10px 28px;

    box-sizing: border-box;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 15px;

    background-color: #21613D;
    color: #F9EEE5;

    border-radius: 14px;
}


/* ---------- TEXTO ---------- */

.bio-step-complete-content {
    flex: 1;
}

.bio-step-complete-title {
    font-size: 16px;
    font-weight: 700;

    margin-bottom: 2px;
}

.bio-step-complete-text {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
}


/* ---------- BOTÃO FINAL ---------- */

.bio-step-complete-button {
    width: 32px;
    height: 32px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid #F9EEE5;

    border-radius: 50%;

    font-size: 22px;
    font-weight: 300;

    cursor: pointer;

    transition: 0.2s ease;
}

.bio-step-complete-button:hover {
    background-color: #21613D;
    color: #F9EEE5;
}

@media (max-width: 768px) {

    .bio-step-section {
        padding: 30px 20px 40px;
    }


    /* INTRODUÇÃO */

    .bio-step-introduction {
        flex-direction: column;
        align-items: stretch;

        gap: 35px;
    }

    .bio-step-introduction-content {
        max-width: none;
    }

    .bio-step-main-image {
        width: 100%;
        max-width: 305px;

        height: auto;
        aspect-ratio: 1 / 1;

        margin: 0 auto;

        margin-bottom: 30px;
    }


    /* COMO FAZER */

    .bio-step-howto {
        margin-top: 45px;
    }

    .bio-step-list {
        grid-template-columns: 1fr;

        gap: 35px;
    }


    /* TÍTULO */

    .bio-step-section-title {
        margin-bottom: 30px;
    }

    .bio-step-section-title-text {
        font-size: 18px;
    }


    /* BOTÃO */

    .bio-step-button {
        width: 100%;
        max-width: 317px;
    }


    /* FINAL */

    .bio-step-complete {
        max-width: 100%;

        margin-top: 40px;
    }

}

/* ==========================================================
   CHECKLIST
========================================================== */

.bio-checklist {
    width: 100%;
    max-width: 700px;

    margin: 45px auto 0;
    padding: 42px 62px;

    box-sizing: border-box;

    background: transparent;

    border: 1.5px solid #21613D;
    border-radius: 45px;

    color: #2F2E2E;
}


/* ---------- TÍTULO ---------- */

.bio-checklist-title {
    color: #21613D;

    font-size: 30px;
    font-weight: 700;
    line-height: 1;

    margin-bottom: 14px;
}


/* ---------- LISTA ---------- */

.bio-checklist-items {
    display: flex;
    flex-direction: column;

    gap: 4px;
}


/* ---------- ITEM ---------- */

.bio-checklist-item {
    display: flex;
    align-items: center;

    color: #2F2E2E;

    font-size: 20px;
    font-weight: 400;
    line-height: 1.3;
}


/* ---------- CHECKBOX ---------- */

.bio-checklist-checkbox {
    width: 21px;

    flex-shrink: 0;

    margin-right: 2px;

    color: #2F2E2E;

    font-size: 22px;
    line-height: 1;
}

@media (max-width: 768px) {

    .bio-checklist {
        max-width: 100%;

        margin-top: 35px;

        padding: 30px 25px;

        border-radius: 30px;
    }

    .bio-checklist-title {
        font-size: 25px;
        margin-bottom: 15px;
    }

    .bio-checklist-item {
        align-items: flex-start;

        font-size: 16px;
    }

    .bio-checklist-checkbox {
        font-size: 19px;
        margin-top: 1px;
    }

}