﻿@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: 250px !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-size: cover;
    background-position: left center;
    background-image: linear-gradient( 65deg, hsl(0deg 0% 100%) 0%, hsl(221deg 100% 97%) 17%, hsl(220deg 100% 93%) 43%, hsl(219deg 100% 89%) 65%, hsl(218deg 100% 85%) 80%, hsl(217deg 100% 81%) 90%, hsl(215deg 100% 77%) 95%, hsl(214deg 100% 72%) 99%, hsl(211deg 100% 65%) 100%, hsl(204deg 100% 50%) 100% );
}

    .login-painel-direito .content {
        min-height: 100%;
        height: 100%;
        display: grid;
        place-items: center;
        place-content: center;
    }

    .login-painel-direito img {
        height: auto;
        width: 80%;
        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%);
}


@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;
    }
}

@media (prefers-color-scheme: dark) {

    .login-painel-direito {
        background-image: linear-gradient( 45deg, hsl(210deg 11% 15%) 0%, hsl(210deg 15% 15%) 11%, hsl(211deg 18% 15%) 22%, hsl(211deg 22% 15%) 33%, hsl(211deg 26% 15%) 44%, hsl(211deg 29% 15%) 56%, hsl(212deg 33% 16%) 67%, hsl(212deg 36% 16%) 78%, hsl(212deg 39% 16%) 89%, hsl(213deg 42% 16%) 100% );
    }
}
