@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');
* {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
    background: transparent!important;
}

::-webkit-scrollbar-track {
    background: transparent!important;
}

::-webkit-scrollbar-thumb {
    background-color: #a1a1a1;
    border-radius: 20px;
    border: 3px solid #fbfcfd;
}

ht
.main_nav {
    padding: 20px;
    text-align: center;
    background: var(--bs-primary);
}



.main_content {
    padding: 3%;
}

.users {
    display: flex;
    flex-wrap: wrap;
}

.users_user {
    flex-basis: 48%;
    padding: 20px;
    background: #eeeeee;
    margin: 1%;
}

.contact {
    text-align: center;
}

.contact h2 {
    font-size: 2em;
}

.contact p {
    margin: 20px 0 40px 0;
}

.contact form input, .contact form textarea {
    display: block;
    width: 67%;
    margin: 0 auto 20px auto;
    padding: 20px;
    font-size: 1.1em;
    border: 3px solid #eeeeee;
    resize: none;
}

.contact form button {
    font-size: 1em;
    border: none;
    padding: 20px;
    background: #27ae60;
    color: #ffffff;
    font-weight: bold;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    margin: 10px;
    cursor: pointer;
    transition-duration: 0.3s;
}

.contact form button:hover {
    background: #2ecc71;
}

.contact form button[type='reset'] {
    background: #7f8c8d;
}

.contact form button[type='reset']:hover {
    background: #95a5a6;
}

.error {
    text-align: center;
}

.error h2 {
    font-size: 3em;
}

.error p {
    margin: 20px 0;
    font-size: 1em;
}

.main_footer {
    text-align: center;
    padding: 20px;
    color: #cccccc;
    position: absolute;
    width: 100%;
    bottom: 0px;
}
label.form-label{
    font-weight: 500;
}

.form-text{
    font-size: 12px!important;
    font-weight: 500
}
.card{
    border: initial!important;
    box-shadow: 3px 2px 6px 2px #0000000d;
}

.mySidebar{
    background: #f1f1f1;
    padding: 14px 2.7rem;
    display: flex;
    justify-content: space-between;
    flex-direction: row;
    position:fixed;
    z-index: 100;
}

@media only screen and (max-width: 626px) {
    .template-theme-line{
        max-width: 100% !important;
        margin-right: 0!important;
    }
    .chamada{
        display: none!important;
    }
    .mySidebar{
        display: flex;
        justify-content: center;
    }
}
.logo{
    margin-left: 0;
}

