﻿@charset 'utf-8';
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap') * *

{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #c9d6ff;
    align-items: center;
    height: 100vh;
    margin: 0 auto;
}

.al-center {
    text-align: center;
}

.linha {
    margin-top: 10px;
    margin-bottom: 10px;
}

.linha-login {
    margin-top: 20px;
    margin-bottom: 20px;
}

.btn {
    width: 100% !important;
}

.toast {
    height: 100%;
    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;
}

.toast-sucesso {
    min-width: 300px;
    min-height: 70px;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #218c74;
    color: #fff;
    text-align: center;
    display: grid;
    place-items: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.toast-erro {
    min-width: 300px;
    min-height: 70px;
    padding-top: 5px;
    padding-bottom: 5px;
    background-color: #ff5252;
    color: #fff;
    text-align: center;
    display: grid;
    place-items: center;
    -webkit-border-radius: 10px;
    -moz-border-radius: 10px;
    border-radius: 10px;
}

.toast-texto {
    color: #fff !important;
    font-size: 1em !important;
}

.login-container {
    min-height: 100%;
    height: 100vh;
    place-items: center;
    float: left;
}

    .login-container img {
        max-width: 200px !important;
        filter: drop-shadow(1px 1px 2px #c0c0c0);
    }

    .login-container a {
        text-decoration: none !important;
        color: var(--font-color);
    }

.login-painel-direito {
    min-height: 100%;
    height: 100vh;
    padding: 15px;
    place-items: center;
    float: left;
    background-image: url('../Assets/login.png');
    background-size: cover;
    background-position: center;
}

    .login-painel-direito .content {
        min-height: 100%;
        height: 100%;
        display: grid;
        place-items: center;
        place-content: center;
    }

    .login-painel-direito img {
        height: auto;
        width: 100%;
        filter: drop-shadow(1px 1px 4px #c0c0c0);
    }

.login-container .campos {
    margin: 0 auto;
    display: block;
    place-items: center;
    place-content: center;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}

.widget-wrapper, .widget-fab, .widget-wrapper.widget-right {
    display: none !important;
}

@media only screen and (max-width: 768px) {

    .login-painel-direito {
        display: none !important;
    }

    .login-main {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media only screen and (max-width: 320px) {

    .login-painel-direito {
        display: none !important;
    }

    .login-main {
        padding-left: 10px;
        padding-right: 10px;
    }
}

