﻿body {
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    background-color: #F8F9FA;
}

/*.LoginMain
{
    position: absolute;    
    width: 561px;
    height: 281px;       
    top:50%; 
    left:50%; 
    margin:-140px auto auto -280px;    
    background-image: url('../Resources/Login.png');
    background-repeat: no-repeat;
    background-position: left top;
}

.LoginCampos
{   
    font-size: 9pt;
    font-family: Calibri, Arial, Verdana;
    float: right;
    margin-top: 70px;
    margin-right: 41px;
    vertical-align: middle;
    height: 19px;
}

.LoginCampos input[type="text"]
{
    border: 1px solid #800000;
    height: 15px;
    font-size: 8pt;
    color: #333333;
}

.LoginCampos input[type="password"]
{
	border: 1px solid #800000;
	height: 15px;
	font-size: 8pt;
	color: #333333;
}




.ButtonLogin
{
    border: 1px solid #800000;
    font-size: 9pt;
    font-family: Calibri, Arial, Verdana;
    color: #FFFFFF;
    height: 19px;
    width: 50px;
    background-color: #800000;
}
*/
/*----------------------------------------------------------------------------------------------*/

.Container {
    height: 100vh;
    display: flex;
    align-items: stretch;
}

.Background {
    flex: 1;
    /*background: url("../Resources/Login/titaniumfix.png") no-repeat center;*/
    background-size: cover;
    object-fit: cover;
}

.imgCapa {
    width: 100%;
    height: 100vh;
    object-fit: cover;
}

.Content {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.LoginMai {
    /*border: solid 3px;
    border-color: #950000;
    border-radius: 10px;*/
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 80px 0;
    width: 340px;
    text-align: center;
}

.imgLogo {
    margin-bottom: 2rem;
}

.TextBoxLogin {
    background: #fff;
    border-radius: 6px;
    border: solid 0.5px;
    border-color: #941111;
    padding: 0 16px;
    width: 260px;
    height: 44px;
    color: #000000;
    font-weight: 500;
    margin-top: 16px;
    transition: 0.4s;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.10);
}

    .TextBoxLogin::placeholder {
        font-size: 14px;
    }

    .TextBoxLogin:focus {
        outline: none;
        border: solid 0.5px;
        border-color: #941111;
        transform: translateY(-4px);
        box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.20);
    }

.BotaoLogin {
    background: #942222;
    border-radius: 6px;
    border: 0;
    padding: 0 16px;
    width: 100%;
    height: 40px;
    color: #F0F0F0;
    font-weight: 700;
    margin-top: 16px;
    transition: 0.4s;
    box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.20);
    margin-bottom: 10px;
}

    .BotaoLogin:hover {
        background: #7e1d18;
        box-shadow: 0px 5px 15px 0px rgba(0, 0, 0, 0.30);
        transform: translateY(-2px);
    }

.LoginMsg {
    color: #7e1d18;
    margin-top: 10px;
    font-weight: 500;
}