
@import url(https://fonts.googleapis.com/css?family=Montserrat);


html {
    box-sizing: border-box;
    height: 100%;
}

body {
    font-family: montserrat, arial, verdana;
    background: transparent;
}


#PageBody {
    background-image: url(/assets/img/login_bg.jpg?v=2);
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    z-index: -100;
}

#frmLogin {
    text-align: center;
    position: relative;
    margin-top: 30px;
    background: white;
    border: 0 none;
    border-radius: 0px;
    box-shadow: 0 0 15px 1px rgba(0, 0, 0, 0.4);
    padding: 20px 30px;
    box-sizing: border-box;
    width: 80%;
    margin: auto;
    max-width: 500px;
}


#frmLogin input, #frmLogin textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 0px;
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
    font-family: montserrat;
    color: #2C3E50;
    font-size: 15px;
    margin-top: 10px;
}

#frmLogin input:focus, #frmLogin textarea:focus {
    -moz-box-shadow: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
    border: 1px solid #2079df;
    outline-width: 0;
    transition: All 0.5s ease-in;
    -webkit-transition: All 0.5s ease-in;
    -moz-transition: All 0.5s ease-in;
    -o-transition: All 0.5s ease-in;
}

.login-button {
    font-family: montserrat, arial, verdana;
    border-radius: 0;
    display: inline-block;
    min-width: 50%;
    padding: 10px 16px;
    font-size: 18px;
    line-height: 1.3333333;
    color: #fff;
    background-color: #2079df;
    border-color: #2079df;
    margin-top: 20px;
    margin-bottom: 60px;
}

.login-button:hover, .login-button:focus {
    box-shadow: 0 0 0 2px white, 0 0 0 3px #2079df;
}



