/*
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 : 18.10.2018, 16:22:07
    Author     : Herz
*/

.login_form{
    width:100%;
    max-width:400px;
    margin:0 auto;
    box-sizing: border-box;
    padding-top:50px;
    padding-bottom:50px;
    text-align:center;
}
.login_form .head{
    color: #94B3A3;
    font-weight: bold;
    font-size: 2.5em;
    display: inline-block;
    text-align:center;
    margin-bottom:30px;
}
.login_form .entry{
    width:100%;
    box-sizing: border-box;
    padding:5px;
}
.login_form .entry input.submit{
    background-color:#94B3A3;
    color:white;
    cursor:pointer;
}
.login_form .entry input.submit:hover{
    background-color: var(--primary);
}
.logout_btn{
    width:100%;
    box-sizing: border-box;
    text-align:right;
    margin-top:30px;
    display:inline-block;
}
.loginlogout {
    padding-right:100px;
}
.logout_btn a{
    background-color:#94B3A3;
    color:white;
    cursor:pointer;
    padding:10px;
}
.logout_btn a i{
    color:white;
}
