﻿@charset 'utf-8';
@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:ital,wght@0,200..900;1,200..900&display=swap');

:root {
    --main-bg: #f8f4f8;
    --menu-icon-color: #212529;
    --menu-bg: #f9f9f9;
}


* {
    margin: 0;
    padding: 0;
}

html {
    width: 100%;
    height: 100%;
}

body {
    font-family: "Source Sans 3", sans-serif !important;
    font-optical-sizing: auto;
    /*font-weight: ;*/
    font-style: normal;
    height: 100%;
    background-color: var(--main-bg) !important;
}

form {
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
}

.grid-center {
    display: grid;
    place-content: center;
    place-items: center;
}

.al-right {
    text-align: right;
}

.al-left {
    text-align: left;
}

.al-center {
    text-align: center;
}

.clear-fix {
    clear: both;
}

.toast {
    display: flex;
    flex-wrap: wrap;
    place-items: center;
    place-content: center;
    min-height: 70px;
    font-size: 1rem !important;
    border: none !important;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
    background-color: transparent !important;
    margin: 0 auto !important;
    float: unset !important;
    z-index: 999999 !important;
}

.toast-sucesso {
    display: flex;
    flex-wrap: wrap;
    place-items: center;
    place-content: center;
    min-width: 300px !important;
    width: 100% !important;
    min-height: 70px;
    padding: 5px;
    background-color: #218c74;
    color: #fff;
    text-align: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.toast-erro {
    display: flex;
    flex-wrap: wrap;
    place-items: center;
    place-content: center;
    min-width: 300px !important;
    width: 100% !important;
    min-height: 70px;
    padding: 5px;
    background-color: #ff5252;
    color: #fff;
    text-align: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.offcanvas {
    background-color: var(--menu-bg) !important;
}

.space-around {
    justify-content: space-around;
}

.space-between {
    justify-content: space-between;
}

.titulo-pagina {
    height: 70px;
    display: flex;
    place-items: center;
    justify-items:center;
    background-color: #fff;
    padding: 10px;
    margin-top: 15px;
}

.page-content {
    background-color: #fff;
    padding: 10px;
    min-height: calc(80vh - 80px);
}

/*===== LOGIN ======*/
.login-master {
    height: 100vh;
    display: flex;
    place-content: center;
    place-items: center;
    background-image: linear-gradient(to left top, #6c63ff, #9789ff, #bcb0ff, #ded7ff, #ffffff);
}

.login-container {
    background-color: #fff;
    min-height: 500px;
}

    .login-container .esquerda {
        border-top-left-radius: 0.5rem;
        border-bottom-left-radius: 0.5rem;
        background-image: url("../Assets/login.png");
        background-position: center;
        background-size:cover;
    }

    .login-container .recovery {
        border-top-left-radius: 0.5rem;
        border-bottom-left-radius: 0.5rem;
        background-image: url("../Assets/recoverypass.png");
        background-position: left;
        background-size: cover;
    }

    .login-container .direita {
        padding: 15px;
    }

    .login-container .direita img {
        max-height: 100px;
    }

    .login-container .direita a {
        text-decoration: none;
        color: inherit;
    }


.display-grid-center {
    display: grid;
    place-content: center;
    place-items:center;
}

.notfound-container {
    height: 500px;
    display: grid;
    place-content: center;
    place-items: center;
}



/*===== MASTERPAGE ======*/
.header-interno {
    height: 80px;
    padding: 5px;
}

    .header-interno img {
        height: 70px;
        width: auto;
    }

.navbar-toggler {
    border: none !important;
    font-size: 3.2em !important;
    outline: none !important;
    box-shadow: none !important;
}

.menu-icon {
    color: var(--menu-icon-color);
}

.master-main-content {
    min-height: calc(100vh - 80px);
    padding: 15px;
}

.master-footer {
    min-height: 100px;
    padding: 15px;
    background-color: #2B3035;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
}

    .master-footer img {
        max-width: 100px;
        height: auto;
        margin-bottom: 15px;
    }

.nav-item {
    border-bottom: 1px dotted #000 !important;
    font-size: 0.9em !important;
}



/*===== HOME ======*/
.home-card {
    background-color: #fff;
    padding: 20px;
    min-height: 50px;
    display: flex;
    flex-wrap: wrap;
    place-content: center;
    place-items: center;
}

    .home-card i {
        font-size: 2.5em;
        color: #16a085;
    }


@media only screen and (max-width: 720px) {
    .login-container .esquerda {
        display: none;
    }
}

@media only screen and (max-width: 320px) {

    .login-container .esquerda {
        display: none;
    }

}