﻿@import url('https://fonts.googleapis.com/css2?family=Arvo:wght@400;700&display=swap');

@font-face {
    font-family: Gilroy-Medium;
    src: url('../font/Gilroy/Gilroy-Medium.ttf')
}

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;700&display=swap');

.container-login {
    text-align: center;
    padding: 50px 0;
    box-sizing: border-box;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-right: -50%;
    transform: translate(-50%, -50%)
}

.content-login {
    width: 330px;
}

@media only screen and (max-width: 320px) {
    .content-login {
        width: 290px;
    }
}

.logo {
    background-image: url('../img/ct-logo.svg');
    background-repeat: no-repeat;
    height: 45px;
    background-position: center;
    margin-bottom: 30px;
}

svg {
    max-width: 100%;
    max-height: 100%;
}

/* Tittle and paragraph */
.form-title {
    font-size: 1.875rem;
    line-height: 2.30rem;
    font-family: 'Arvo', serif;
    font-weight: bold;
    text-align: center;
}

.form-title-create {
    margin-bottom: 0px;
}

.form-parag {
    text-align: center;
}

.form-subtitle-create {
    font-size: 0.75rem;
    line-height: 0.9375rem;
    color: #8C97AC;
    text-align: center;
}

/*Floating label fields*/
.form {
    margin: 0 auto;
    box-sizing: border-box;
}

.form-header {
    margin-bottom: 40px;
}

.custom-form-group {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    width: 100%;
    position: relative;
    height: 3.5rem;
    margin-bottom: 0.5rem;
    line-height: 1;
}

    .custom-form-group input {
        height: 100%;
        width: 100%;
        padding-top: 0.8rem;
        padding-left: 1.4rem;
        border: none;
        outline: none;
        background-color: rgb(245, 245, 245);
        color: #353C40;
        border-radius: 4px;
    }

.with-icon input,
.with-icon .floating-label label {
    padding-left: 3rem;
}

.custom-form-group select {
    height: 100%;
    width: 100%;
    padding-top: 1rem;
    padding-left: 1.4rem;
    border: none;
    outline: none;
    background-color: rgb(245, 245, 245);
    color: #353C40;
    border-radius: 4px;
}

    .custom-form-group input:focus + .floating-label label,
    .custom-form-group input:-webkit-autofill + .floating-label label,
    .custom-form-group select + .floating-label label,
    .custom-form-group input:not(:placeholder-shown) + .floating-label label {
        transform: translateY(-100%);
        font-size: 0.8rem;
    }

.custom-form-group .floating-label {
    position: absolute;
    bottom: 0px;
    left: 0px;
    height: 100%;
    width: 100%;
    pointer-events: none;
    color: #8C97AC;
}

    .custom-form-group .floating-label::after {
        content: "";
        position: absolute;
        left: 0px;
        bottom: 0px;
        height: 100%;
        width: 100%;
        border: solid 2px rgb(245, 245, 245);
        border-radius: 4px;
        transition: all 0.3s ease;
    }

input:-webkit-autofill {
    -webkit-box-shadow: 0 0 0 30px rgb(245, 245, 245) inset;
}

.floating-label label {
    padding-left: 1.4rem;
    position: absolute;
    top: 1.25rem;
    left: 0px;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.grecaptcha-badge {
    visibility: hidden;
}

@media (max-height: 780px) {
    .floating-label label {
        top: 1.3rem;
    }
}

@media (max-height: 580px) {
    .floating-label label {
        font-size: 0.7rem;
    }
}

/* Icons */
.icon {
    color: #8C97AC;
    position: absolute;
    left: 0;
    top: 1rem;
    width: 3rem;
}

/* CHECKBOX */
.form-check-connect {
    float: left;
    margin-top: 8px;
}

    .form-check-connect input[type=checkbox] {
        position: absolute;
        z-index: -1;
        opacity: 0;
    }

    .form-check-connect input + label {
        position: relative;
        cursor: pointer;
        margin-left: 6px;
        padding-left: 25px;
    }

    .form-check-connect input[type=checkbox] + label:before {
        content: '';
        position: absolute;
        width: 20px;
        height: 20px;
        left: 0;
        top: 3px;
        border: 1px solid rgba(0, 0, 0, 0.1);
        box-sizing: border-box;
        border-radius: 4px;
        vertical-align: bottom;
    }

    .form-check-connect input[type=checkbox]:checked + label:after {
        content: '';
        position: absolute;
        left: 7px;
        top: 5px;
        width: 7px;
        height: 11px;
        border: solid #00A885;
        border-width: 0 2px 2px 0;
        transform: rotate(45deg);
    }

    .form-check-connect label {
        margin-left: 50px;
        color: #8C97AC;
        font-size: 0.75rem;
        line-height: 0.93rem;
        display: inline-block;
        width: 10px;
    }

.form-forgot {
    display: block;
    float: right;
    margin-right: 5px;
    margin-top: 8px;
}

    .form-forgot a {
        text-decoration: none;
        color: #8C97AC;
        font-size: 0.75rem;
        line-height: 0.93rem;
    }

        .form-forgot a:hover {
            color: #00A885;
        }

/* BUTTON */
.form-button {
    margin-top: 50px;
}

    .form-button button,
    .form-button input {
        background: #00A885;
        border: none;
        border-radius: 50px;
        width: 100%;
        padding: 15px 0;
        color: #fff;
        font-size: 1rem;
        line-height: 1.25rem;
        cursor: pointer;
    }

/* CREATE ACCOUNT */
.create-account {
    margin-top: 30px;
}

    .create-account p {
        color: #8C97AC;
        text-align: center;
        font-size: 0.875rem;
    }

    .create-account a {
        text-decoration: none;
        color: #00A885;
    }

.path-cor-sistema {
    fill: #00a885 !important;
}

.btn-primary {
    background-color: #00a885;
    border-color: #00a885;
}

    .btn-primary:hover {
        background-color: #38B955;
        border-color: #38B955;
    }

.btn-outline-primary {
    border-color: #00a885;
    color: #00a885;
}

    .btn-outline-primary:hover {
        background-color: #38B955;
        border-color: #38B955;
    }

.footer-button-bar .active {
    color: #93D408;
    border-bottom: 3px solid #93D408;
}

/* Recaptcha */
.button-recaptcha {
    margin: 30px 20px !important;
}

@media only screen and (max-width: 390px) {
    .container-login {
        padding: 0px;
        margin-top: 20px;
    }

    .form-header {
        margin-bottom: 0px;
    }

    .button-recaptcha {
        margin: 30px 0px !important;
    }
}

/* Radios */
.form-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.form-radio {
    position: relative;
    display: block;
    margin: 10px 0 !important;
    padding: 0 25px;
    color: #8C97AC;
}

    .form-radio .form-check-label input {
        opacity: 0;
        margin-left: 5px;
    }

    .form-radio label input + .input-helper:before {
        position: absolute;
        content: "";
        top: 50%;
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        left: 0;
        border: 2px solid #f2f2f2;
        width: 20px;
        height: 20px;
        border-radius: 50%;
        -webkit-transition: all;
        -o-transition: all;
        transition: all;
        transition-duration: 0s;
        -webkit-transition-duration: 250ms;
        transition-duration: 250ms;
    }

    .form-radio label input + .input-helper:after {
        content: "";
        width: 8px;
        height: 8px;
        background: #F1635F;
        border-radius: 50%;
        top: 30%;
        -moz-transform: translateY(-30%);
        -o-transform: translateY(-30%);
        -ms-transform: translateY(-30%);
        -webkit-transform: translateY(-30%);
        transform: translateY(-30%);
        left: 6px;
        -webkit-transition: all;
        -o-transition: all;
        transition: all;
        transition-duration: 0s;
        -webkit-transition-duration: 250ms;
        transition-duration: 250ms;
        opacity: 0;
        filter: alpha(opacity=0);
        -webkit-transform: scale(0);
        -ms-transform: scale(0);
        -o-transform: scale(0);
        transform: scale(0);
        position: absolute;
    }

    .form-radio label input:checked + .input-helper:before {
        background-color: #ffffff;
        border: 2px solid #f2f2f2;
        top: 30%;
        -moz-transform: translateY(-30%);
        -o-transform: translateY(-30%);
        -ms-transform: translateY(-30%);
        -webkit-transform: translateY(-30%);
        transform: translateY(-30%);
    }

    .form-radio label input:checked + .input-helper:after {
        opacity: 1;
        line-height: 1.5;
        filter: alpha(opacity=100);
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

.content-recover img {
    max-width: 80%;
    width: 100%;
}

.content-recover .btn-modal a {
    margin: 0 auto;
}

@media only screen and (min-width: 680px) {
    .body {
        background: url('../img/background.svg');
        background-repeat: no-repeat;
        background-attachment: fixed;
        background-position: center;
    }

    .container-login {
        width: 350px;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-right: -50%;
        transform: translate(-50%, -50%)
    }

    .content-login {
        width: 426px;
        box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.15);
        border-radius: 20px;
        padding: 30px 0;
        background: #fff;
    }

    .form {
        width: 80%;
    }

    .form-check-connect label {
        color: #8C97AC;
        font-size: 0.75rem;
        line-height: 0.93rem;
        width: 100%;
    }

    .form-check-connect input[type=checkbox] + label:before {
        top: -3px;
    }

    .form-check-connect input[type=checkbox]:checked + label:after {
        top: 0px;
    }

    /* Confirmações */
    .content-recover {
        width: 700px;
        max-width: 100%;
        box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.15);
        border-radius: 20px;
        padding: 30px 0;
        background: #fff;
        position: absolute;
        top: 50%;
        left: 50%;
        margin-right: -50%;
        transform: translate(-50%, -50%)
    }

    .popup {
        background: rgba(0, 0, 0, 0.6);
        width: 100vw;
        height: 100vh;
    }
}

/* Logged Layout */
/* MENU */
.navbar {
    display: flex;
    align-items: center;
    background: #FFF;
    height: 8vh;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    margin: 25px auto 0 auto;
    width: 90%;
}

    .navbar .navbar-item {
        width: 300px;
    }

        .navbar .navbar-item .menu-title::before {
            content: '';
            display: block;
            width: 85px;
            height: 4px;
            background: #14A387;
            position: absolute;
            top: 0px;
            left: 210px;
        }

        .navbar .navbar-item .menu-title {
            color: #14A387;
            font-weight: normal;
            margin-left: 20px;
        }

        .navbar .navbar-item:hover {
            text-decoration: none;
        }

.nav-list {
    list-style: none;
    display: flex;
    margin: 0;
}

    .nav-list li a {
        color: #333D3A;
    }

.mobile-menu {
    display: none;
    cursor: pointer;
}

    .mobile-menu .menu-burguer {
        color: #000;
    }

.avatar__32 {
    height: 32px;
    width: 32px;
    border-radius: 32px;
    overflow: hidden;
    font-size: 14px;
}

.button-menu {
    text-decoration: none;
}

    .button-menu:hover {
        text-decoration: none;
        font-weight: normal;
    }

    .button-menu .avatar {
        background-color: #C4E8E1;
        color: #14A387;
        margin-right: 15px;
    }

        .button-menu .avatar span {
            color: #14A387;
        }

    .button-menu .icon-chevron {
        color: #93D500;
        transform: rotate(180deg);
        margin-left: 5px;
    }

.dropDown {
    display: none;
    position: absolute;
    top: 80px;
    right: 0;
    list-style: none;
    float: left;
    width: 280px;
    height: auto;
    padding: 20px;
    box-shadow: 0px 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    background: #fff;
    z-index: 11;
}

    .dropDown li {
        display: block;
        width: 100%;
        height: auto;
    }

        .dropDown li:last-child a::before {
            content: '';
            display: block;
            position: absolute;
            top: 71%;
            width: 220px;
            height: 1px;
            background: rgba(0, 0, 0, 0.1);
        }

        .dropDown li a {
            display: block;
            float: left;
            width: 100%;
            color: #7B8986;
            text-decoration: none;
            padding: 10px;
        }

            .dropDown li a:hover {
                background: #F3FAF9;
                color: #34BEA2;
                border-radius: 8px;
            }

        .dropDown li .menu-icon {
            margin-right: 10px;
        }

        .dropDown li a:hover .menu-icon {
            color: #93D500;
        }

@media (max-width: 680px) {
    .navbar {
        display: flex;
        align-items: center;
        background: #F3F5F5;
        height: 8vh;
        margin: 0px;
        width: 100%;
    }

        .navbar .navbar-item {
            width: 200px;
        }

        .navbar .navbar-item .menu-title {
            display: none;
        }

    .nav-list {
        position: absolute;
        top: 8vh;
        right: 0;
        width: 60vw;
        height: 100vh;
        background: #F3F5F5;
        flex-direction: column;
        transform: translateX(100%);
        transition: transform 0.3s ease-in;
    }

        .nav-list li {
            margin-left: 0;
        }

        .nav-list.active {
            transform: translateX(0);
            z-index: 11;
        }

    .mobile-menu {
        display: block;
    }

    .button-menu {
        display: block;
        text-align: center;
        line-height: 30px;
        text-decoration: none;
        margin-top: 20px;
    }

    .dropDown {
        box-shadow: none;
        border-radius: 0;
        background: none;
        padding: 0;
        right: initial;
    }

        .dropDown li:last-child a::before {
            top: 75%;
            width: 260px;
        }
}

@media (max-width: 580px) {
    .navbar .navbar-item img {
        width: 120px;
    }

    .nav-list {
        top: 8vh;
        width: 80vw;
    }
}

@media only screen and (max-width: 370px) {
    .nav-list {
        width: 90vw;
    }
}

/* INTRO */
.content-head {
    margin: 0 20px;
}

    .content-head h2 {
        color: #129379;
        font-weight: normal;
        font-size: 2.5rem;
        line-height: 3.75rem;
    }

        .content-head h2::after {
            content: '';
            display: block;
            background: #C4E8E1;
            height: 2px;
        }

.container-logged {
    width: 95%;
    margin: 0 auto;
}

.main-intro {
    text-align: center;
    margin-top: 30px;
}

    .main-intro h2 {
        font-size: 2.5rem;
        line-height: 3.75rem;
        font-weight: normal;
    }

        .main-intro h2 span {
            text-transform: uppercase;
        }

    .main-intro p {
        font-size: 1.125rem;
        line-height: 1.625rem;
    }

.profile {
    max-width: 100%;
    margin: 30px auto 0;
}

@media (min-width: 680px) {
    .profile {
        width: 500px;
        margin: 60px auto 0;
    }

    .main-intro h2 {
        font-size: 3rem;
        line-height: 3.75rem;
        font-weight: normal;
        margin-bottom: 25px;
    }

    .main-intro p {
        font-size: 1rem;
        line-height: 1.625rem;
        margin-bottom: 40px;
    }
}

/* CARDS */
.cards {
    max-width: 300px;
    margin: 0 auto 60px;
    display: flex;
    flex-wrap: wrap;
    flex: 1;
    gap: 8px;
    justify-content: space-around;
}

.card {
    width: 145px;
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.15);
    border-radius: 6px;
}

.card-logo {
    text-align: center;
    height: 80px;
    position: relative;
    top: 10%;
}

    .card-logo img {
        height: 60px;
        max-width: 80%;
        align-items: center;
    }

.card-title {
    background-color: #14A387;
    box-shadow: 0px 8px 32px rgba(0, 0, 0, 0.15);
    border-radius: 0px 0px 6px 6px;
    margin: 0px;
}

    .card-title span {
        font-size: 0.7rem;
        font-weight: normal;
        color: #fff;
        text-align: center;
        padding: 15px 0;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 70px;
    }

@media only screen and (max-width: 370px) {
    .cards {
        max-width: 150px;
    }
}

@media only screen and (min-width: 580px) {
    .cards {
        max-width: 450px;
    }

    .card {
        width: 220px;
    }

    .card-logo {
        text-align: center;
        height: 110px;
        position: relative;
        top: 10%;
    }

        .card-logo img {
            height: 75px;
        }

    .card-title span {
        font-size: 1rem;
    }
}

@media only screen and (min-width: 820px) {
    .cards {
        max-width: 680px;
        margin: 0 auto 60px;
    }
}

@media only screen and (min-width: 980px) {
    .cards {
        max-width: 920px;
    }
}

/* CONSENT */
.content-consent {
    margin: 30px auto 0;
    width: 300px;
}

/* CHECKBOX */
.form-check-input {
    position: absolute;
    margin-top: 0.2rem;
    margin-left: -1.25rem;
}

.form-check {
    position: relative;
    display: block;
    margin-top: 15px;
    margin-bottom: 10px;
}

    .form-check .form-check-label {
        display: block;
        padding-left: 30px;
        line-height: 1.5;
    }

.rtl .form-check .form-check-label {
    padding-left: 0;
    padding-right: 30px;
}

.form-check .form-check-label input {
    position: absolute;
    margin-left: -20px;
    margin-top: 4px\9;
    top: 0;
    left: 0;
    z-index: 1;
    cursor: pointer;
    opacity: 0;
    filter: alpha(opacity=0);
    margin-top: 0;
}

.rtl .form-check .form-check-label input {
    left: auto;
    right: 0;
}

.form-check .form-check-label {
    font-size: 14px;
    line-height: 1.5;
    padding-left: 10px;
}

    .form-check .form-check-label input:checked + .input-helper:before {
        background-color: #ffffff;
    }

    .form-check .form-check-label input:checked + .input-helper:after {
        width: 18px;
        opacity: 1;
        line-height: 18px;
        filter: alpha(opacity=100);
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    .form-check .form-check-label input:disabled + .input-helper:before {
        border-color: #D3D3D3;
    }

    .form-check .form-check-label input:disabled:checked + .input-helper:after {
        color: #D3D3D3;
    }

    .form-check .form-check-label .input-helper:before {
        position: absolute;
        content: "";
        top: 50%;
        -moz-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -webkit-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 18px;
        height: 18px;
        border-radius: 2px;
        left: 0;
        border: 2px solid #f2f2f2;
        -webkit-transition: all;
        -o-transition: all;
        transition: all;
        transition-duration: 0s;
        -webkit-transition-duration: 250ms;
        transition-duration: 250ms;
    }

.rtl .form-check .form-check-label .input-helper:before {
    left: auto;
    right: 0;
}

.form-check .form-check-label .input-helper:after {
    -webkit-transition: all;
    -o-transition: all;
    transition: all;
    transition-duration: 0s;
    -webkit-transition-duration: 250ms;
    transition-duration: 250ms;
    font-family: Material Design Icons;
    opacity: 0;
    filter: alpha(opacity=0);
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    content: '\F12C';
    position: absolute;
    font-size: 0.8rem;
    font-weight: bold;
    left: 1px;
    top: 1px;
    -moz-transform: translateY(-14%);
    -o-transform: translateY(-14%);
    -ms-transform: translateY(-14%);
    -webkit-transform: translateY(-14%);
    transform: translateY(-14%);
    color: #009c8a;
}

.rtl .form-check .form-check-label .input-helper:after {
    left: auto;
    right: 0;
}

.form-check.form-check-flat label input:checked + .input-helper:before {
    background-color: #0cca8e;
    border: none;
}

.form-check.form-check-flat label input:disabled + .input-helper:after {
    color: #D3D3D3;
}

.form-check.form-check-flat label input:disabled + .input-helper:before {
    border-color: #D3D3D3;
}

.form-check.form-check-flat label input:disabled:checked + .input-helper:before {
    background: #f7f7f9;
}

.form-check.form-check-flat label .input-helper:before {
    border: 2px solid #C0C0C0;
}

.form-check.form-check-flat label .input-helper:after {
    color: #ffffff;
}

@media only screen and (max-width: 420px) {
    .content-consent {
        width: 220px;
        margin: 0 20px;
    }

    .content-head .title-consent {
        font-size: 1.5rem;
        line-height: 2rem;
    }
}

@media only screen and (min-width: 580px) {
    .content-consent {
        width: 450px;
    }

    .content-head .title-consent {
        font-size: 2rem;
        line-height: 2.5rem;
    }
}

@media only screen and (min-width: 820px) {
    .content-consent {
        width: 600px;
    }
}

/* FOOTER */
.footer {
    width: 100%;
    background: #14A387;
    padding: 21px;
    bottom: 0;
    margin-top: 50px;
}

    .footer p {
        color: white;
        text-align: center;
        margin: 0;
    }

@media (max-width: 580px) {
    .footer {
        margin-top: 20px;
    }

        .footer p {
            font-size: 0.75rem;
        }
}
