/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 03/10/2018, 08:17:55
    Author     : Rikardo
*/

/***********************************
############## LOGIN ###############
***********************************/
.login{
    background: #15355E;
}

.login_bg{
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 50%;
    background: #15355E url(../img/TripinhaIntranet.jpg) top center no-repeat;
    background-size: contain;
    border-bottom: 1px solid #15355E;
}

.login .trigger_ajax{
    display: block;
}

.login_container{
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    text-align: center;
    display: flex;
    padding: 50px 0;
}

.login_box{
    margin: auto;
    width: 400px;
    max-width: 90%;
}

.login_logo{
    width: 173px;
    max-width: 80%;
}

.login_form{
    text-align: left;
    display: block;
    width: 400px;
    max-width: 100%;
    margin: 25px auto;
    background: #fff;
    padding: 25px;
    box-shadow: 0 0 5px 0 #ccc;
    border-radius: 4px;
    -moz-border-radius: 4px;
    -webkit-border-radius: 4px;
}

.login_link{
    font-size: 0.8em;
    margin-top: 10px;
    text-transform: uppercase;
    font-weight: 300;
}

.login_link a{
    color: #fff;
    font-size: 0.875em;
    font-weight: 500;
    text-decoration: none;
}

.login_link a:hover{
    text-decoration: underline;
}


