﻿body.login {
    font-family: Lato, serif;
    font-size: 14px;
    color: rgb(50,75,50);
    background-image: url("../img/login_background.jpg");
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position-x: center;
    background-position-y: center;
    background-attachment:fixed;
    overflow: hidden;
    height: 100%;
    padding:0;
    margin:0;
}

div.loginLogo {
    height: 12%;
    width: 80%;
    border: 0 none #000000;
    min-height:100px;
}

img.loginLogo {
    position:relative;
    border: 0 none #000000;
    width: 230px;
    top: 40%;
    left: 50px;
    padding: 0;
}

div.inputBack {
    position: relative;
    width: 80%;
    background-color: rgba(0,0,0,0.5);
    border: 0 none #000000;
    height: 400px;
    padding-top: 20px;
    max-width: 1200px;
}

div.loginForm {
    position:absolute;
    width: 90%;
    top:15%;
    border: 0 none #000000;
    margin-left:20px;
}

img.eulogo {
    border: 0 none #000000;
    padding:0;
    margin:0;
    width:350px;
}

div.loginBottom {
    position: absolute;
    bottom: 1px;
    right: 1px;
    width: 100%;
    height: 100px;
    border: 0 none #000000;
	background-color: #fff;
    text-align: center;
    padding:0;
    margin:0;
}

div.loginWelcome {
    position: relative;
    width: 50%;
    height: 100%;
    border: 0 none #000000;
    text-align: right;
    vertical-align: central;
    float: left;
    padding: 0 20px 30px 0
}

span.loginText{
    font-size:40px;
    color:white;
}
span.loginTextSmall {
    font-size: 16px;
    color: white;
}

div.loginInput {
    position: relative;
    width: 40%;
    height: 100%;
    border: 0 none #000000;
    float: right;
    padding-right:40px;
}

input[type="text"].loginInput,
input[type="password"].loginInput {
    font-family: Lato, serif;
    color: rgb(250, 250, 250);
    font-size: 100%;
    line-height: 1.2;
    text-align: left;
    border-left: 0 none #000000;
    border-right: 0 none #000000;
    border-top: 0 none #000000;
    border-bottom: 1px solid rgb(200,200,200);
    width: 100%;
    height: 35px;
    background: transparent;
}

.loginText::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
    color: rgb(190,190,190);
    opacity: 1; /* Firefox */
}

.btLogin {
    font-family: Lato, serif;
    font-size: 110%;
    text-align: center;
    color: rgb(255,255,255);
    background-color: rgb(80, 80, 80);
    border-style: none;
    cursor: pointer;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    float: right;
    padding: 5px 10px 10px 10px;
}

    .btLogin:hover {
        background-color: rgb(90, 90, 90);
    }

@media only screen and (max-width: 850px) {
    div.inputBack {
        width: 100%;
        height: 70%;
    }

    div.loginWelcome {
        width: 90%;
        text-align: left;
    }

    span.loginText {
        font-size: 33px;
    }

    div.loginInput {
        float: left;
    }
}
@media only screen and (max-width: 500px) {
    div.loginLogo {
        height: 40px;
        min-height: 40px;
    }

    img.loginLogo {
        top: 5px;
        left:10px;
    }
    div.loginForm{
        top:10px;
    }
    div.loginInput{
        width:70%;
        margin-left:10%;
    }
    div.loginWelcome {
        padding: 0;
        top: -25px;
        text-align: center;
    }
    .loginText{
        display:none;
    }
    div.inputBack {
        left:0;
        top:0;
        height:90%;
    }

}

input[type="checkbox"].login {
    color: rgb(246,246,246);
}


.loginTxt {
    font-family: Lato, serif;
    font-size: 100%;
    color: rgb(157, 157, 157);
    line-height: 1.385;
}