*
{
    box-sizing: border-box;
}

body
{
    background-color: #f0f0f0;
    background-color: #ebebeb;
    margin: 0;
    padding: 0px;
    font-family: system-ui, Helvetica, Arial, sans-serif;
    font-size: 15px;
    color: #000000;
    letter-spacing: 0.2px;
}

.conteudo
{
    padding: 20px;

    /* display: flex;
    justify-content: space-around; */
}

.divRight
{
    width: fit-content;
    margin: 0 auto 0 auto;
    padding: 12px 0 0 0;
}

.divRight p
{
    margin: 6px 0;
    font-size: 13px;
}

.divLeft
{
    /* width: 49%; */
}

#divLogin
{
    max-width: 400px;
    background-color: #FFFFFF;
    border-radius: 6px;
    margin: 0 auto;
    padding: 25px;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.12);
}

#divLogin h1
{
    margin-bottom: 30px;
    margin-top: 10px;
    font-weight: 600;
}

#divLogin h2
{
    margin-bottom: 30px;
    margin-top: 20px;
    font-weight: 600;
}

#divCadastro
{
    /* display: none; */
}

label
{
    margin-bottom: 2px;
    display: block;
}

input[type=text], input[type=email], input[type=password] 
{
    border-radius: 6px;
    width: 100%;
    padding: 0px 8px;
    margin: 0;
    font-size: 15px;
    border: 1px solid #dddddd;
    margin: 4px 0px 15px 0px;
    height: 40px;
    
}

button
{
    border: none;
    padding: 0 10px;
    font-size: 15px;
    cursor: pointer;
    border-radius: 6px;
    height: 42px;
    line-height: 42px;
    min-width: 38px;
    color: inherit;
    background-color: inherit;
    width: 100%;
}

button span
{
    display: inline-block;
    vertical-align: top;
    line-height: 38px;
}

button i
{
    font-style: normal;
    display: inline-block;
    line-height: 38px !important;
}

.button1 
{
    background-color: #4483e0;
    color: white;
}

.button1:hover
{
    background-color: #0059c1;
}

.button2 
{
    background-color: white;
    color: #4483e0;
    border: 1px solid #dddddd;
}

.button2:hover
{
    border-color: #4285f4;
    background-color: #f5f5f5;

}

#lblOu
{
    margin-top: 25px;
    margin-bottom: 25px;
    color: #999999;
    text-align: center;
}

.imgLogo
{
    width: -webkit-fill-available;
    width: 100%;
    max-width: 270px;
    margin: 0 auto;
    display: block;
}

.figureLogo
{
    margin: 24px 0 36px 0;
}



@media screen and (max-width: 450px)
{
    .conteudo
    {
        justify-content: space-around;
        flex-direction: column;
    }

    .divRight
    {
        width: 100%;
        margin: 24px 0 0 0;
    }

    .divLeft
    {
        width: 100%;
    }
}