/*
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 : 12.5.2017, 17:41:54
    Author     : gaspa
*/

* {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
}

#login_page {
    width: 500px;
    align-self:center;
}


#login_page #nadpis {
    color: white;
    background-color: #8bbf42;
    font-size: 38px;
    line-height: normal;
    padding-top: 20px;
    padding-bottom: 20px;
    text-align: center;
}


#login_page #login {
    background: rgb(255,255,255);
    background: -moz-linear-gradient(top, rgba(255,255,255,1) 0%, rgba(229,229,229,1) 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,rgba(255,255,255,1)), color-stop(100%,rgba(229,229,229,1)));
    background: -webkit-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%);
    background: -o-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%);
    background: -ms-linear-gradient(top, rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%);
    background: linear-gradient(to bottom, rgba(255,255,255,1) 0%,rgba(229,229,229,1) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5',GradientType=0 );
    padding-top: 60px;
    padding-bottom: 20px;
    font-size: 22px;
    color: #01232C;
}


#login_page #error {
    color: red;
    padding: 10px;
    text-align: center;
    font-size: 19px;
}
#login input {
    padding: 3px 5px;
    font-weight: bold;
}

input[type="text"], input[type="password"], input[type="file"], textarea {
    border: 1px solid #ccc;
    background-color: #fff;
}


#login_page input[type=submit] {
    background: none;
    background-color: #8bbf42;
    border: none;
    color: white;
    margin-top: 40px;
    font-size: 22px;
    padding: 12px 20px;
    font-weight: normal;
}


#login_page #login input[type=text], #login_page #login input[type=password] {
    font-size: 22px;
    font-weight: normal;
    padding: 10px;
}


#login-body{
    display: flex;
    flex-direction: column;
    justify-content: center;
}

#login-body img{
    width: 250px;
    margin: 60px;
}


#login-body #logo{
    align-self:center;
}

.preloader{ position: fixed;top:0;bottom: 0;left: 0;right: 0;background-color: rgba(255,255,255,0.6);z-index: 9999;display:none;opacity:0; }
.preloader div{ margin-left: -32px;margin-top: -32px;background-image: url(../img/preloader.gif);width: 65px;height: 65px;top: 50%;left: 50%;background-repeat: no-repeat;position: absolute;}


.isa_info, .isa_success, .isa_warning, .isa_error {
    border: 1px solid;
    margin: 10px 0px;
    padding:15px 10px 15px 50px;
    background-repeat: no-repeat;
    background-position: 10px center;
    -moz-border-radius:.5em;
    -webkit-border-radius:.5em;
    border-radius:.5em;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-left: -450px;;
    width: 900px;
    z-index: 2000;
    text-shadow: 1px 1px 2px rgba(150, 150, 150, 1);
    font-weight: bold;
    display:none;
    opacity: 0;
 
}
.isa_info {
    color: #00529B;
    background-color: #BDE5F8;
    background-image: url('../img/isa/info.png');
}
.isa_success {
    color: #4F8A10;
    background-color: #DFF2BF;
    background-image:url('../img/isa/success.png');
}
.isa_warning {
    color: #9F6000;
    background-color: #FEEFB3;
    background-image: url('../img/isa/warning.png');
}
.isa_error {
    color: #D8000C;
    background-color: #FFBABA;
    background-image: url('../img/isa/error.png');
}