@font-face {
    font-family: 'montserrat-regular';
    src: url('./Font/montserrat-regular.ttf') format('truetype');
}


body {
    font-family: 'montserrat-regular';
    background-attachment: fixed;
    background-image: url(../Icons/fundo_color_1920.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    -webkit-background-size: cover;
    background-color: #bababa;
}




.divLoginCenterContent 
{
    background-color: #FFFFFF;
    border-radius: 6px;
    margin: auto;
    width:33%;
    padding:30px;
}


.loginheader 
{
    position: absolute;
    width: 100%;
    height: 60px;
    background-color: #FFFFFF;
    border-bottom: 2px solid #f7bf5c;
    top: 0px;
    z-index: 1;
}



.loginfooter 
{
    position: fixed;
    width: 100%;
    height: 30px;
    background-color: #FFFFFF;
    bottom: 0;
    z-index: 1;
}

/*Estilo Responsivo*/
@media (width <= 980px) 
{

    .divLoginCenterContent 
    {
        border-radius: 0px;
        width: 80%;
        height:60%;
    }

    .loginheader {
        position: absolute;
        width: 100%;
        height: 100px;
        background-color: #FFFFFF;
        border-bottom: 2px solid #f7bf5c;
        top: 0px;
        z-index: 1;
    }

    .loginfooter {
        position: fixed;
        width: 100%;
        height: 100px;
        background-color: #FFFFFF;
        bottom: 0;
        z-index: 1;
        padding-top: 35px;
    }

    #CenterCompanyLogo
    {
        width:auto;
        height:100px;
    }


    .footerLabels 
    {
        font-size: 15px;
    }
}





.fingerprint_icon,
.rfidcard_icon {
    width: 120px;
    height: 120px;
    background-color: #585858;
    border-radius: 50%;
    padding: 10px;
}

.fingerprint_icon_off,
.rfidcard_icon_off {
    width: 120px;
    height: 120px;
    background-color: #FF0000;
    border-radius: 50%;
    padding: 10px;
}

.fingerprint_icon_ok,
.rfidcard_icon_ok {
    width: 120px;
    height: 120px;
    background-color: #2af175;
    border-radius: 50%;
    padding: 10px;
}

.fingerprint_icon_on,
.rfidcard_icon_on {
    width: 120px;
    height: 120px;
    background-color: #585858;
    border-radius: 50%;
    padding: 10px;
    -webkit-animation: linear infinite alternate;
    -webkit-animation-name: fingerprint_icon_on;
    -webkit-animation-duration: 1s;
}

@-webkit-keyframes fingerprint_icon_on {
    0% {
        background-color: #585858;
    }

    50% {
        background-color: #84652e;
    }

    100% {
        background-color: #ca8a14;
    }
}



#txtFingertitle,
#txtRfidMessage {
    font-size: 17px;
    margin-top: 20px;
    padding: 5px;
    border-radius: 5px;
}

.txtFingertitle_error,
.txtRfidMessage_error{
    color: #ff0303;
    border: 1px solid #ff0303;
}

.txtFingertitle_waiting,
.txtRfidMessage_waiting {
    border: 1px solid #ffa503;
    color: #ffa503;
}


.txtFingertitle_success,
.txtRfidMessage_success {
    color: #2af175;
    border: 1px solid #2af175;
}



#btnStopRfid
{
    display:none;
}









.labelTopTitle 
{
    font-size: 19px !important;
    font-weight: bold !important;
    color: #000000;
}



.inputs 
{
    border: 1px solid #777777;
    width: 100%;
    border-radius: 6px;
    margin-top: 10px;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 5px;
}


.labelRecPwd {
    color: var(--general-color);
    text-decoration: underline;
    cursor: pointer;
}



.footerLabels 
{
    font-size: 12px;
}

#btnLogIn
{
    float:right;
}



#lblWarning
{
    color:#FF0000;
}