@charset "utf-8";

body {
    width: 100%;
    height: 100%;
    background: #78C847;
    background: -webkit-radial-gradient(center, circle, #78C847, #4E802F);
    background: -moz-radial-gradient(center, circle, red, blue);
    background: -ms-radial-gradient(center, circle, red, blue);
    background: -o-radial-gradient(center, circle, red, blue);
    background: radial-gradient(circle at center, #78C847, #4E802F);
}

.loginModal {
    width: 350px;
    height: 260px;
    background: #fff;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -130px;
    margin-left: -175px;
    border-radius: 2px;
    color: #ddd;
    box-shadow: 0px 0px 40px 0px #00000054;
}


.loginicon {
    background: url(../img/logo-provisioning.png) no-repeat left 44px center , url(../img/logo.png) no-repeat left 15px center #222;
    background-size: auto 30px;
    padding: 39px 15px 15px 15px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
}

.logincontent {
    margin: 15px;
    padding: 48px 15px 15px 15px;
}

.logincontent input {
    width: calc(100% - 43px);
    margin: 8px;
    border: 1px solid rgba(0,0,0,0.1);
    padding: 7px 13px;
    text-align: center;
    transition: none;
}


.loginModal .buttons {
    background: #3a3a3a;
    text-align: center;
    padding: 13px;
    margin-top: 40px;
}

.loginerror {
    text-align: center;
    color: red;
    margin-top: 30px;
}

.avatar {
    border: 4px solid #FFFFFF;
    border-left: 3px solid #FFFFFF;
    border-right: 3px solid #FFFFFF;
    box-shadow: 1px 1px 4px rgba(0,0,0,0.2);
    background: url(../img/avatar.jpg) center center no-repeat;
    height: 100px;
    width: 100px;
    border-radius: 100px;
    background-size: 100px;
    max-width: none;
    max-height: none;
    left: 0;
    right: 0;
    top: -61px;
    margin: auto;
    position: absolute;
}


#submit {
    background: #2196F3;
    padding: 5px 18px;
    border-radius: 5px;
    font-size: 15px;
    text-transform: uppercase;
    color: antiquewhite;
    font-family: robotoregular;
    border: solid 1px rgba(0,0,0,0.05)!important;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

#submit:focus {
    outline: none;
}


#submit:hover {
    cursor: pointer;
    background: #26A1F8;
}

html.loading body {
    overflow: hidden;
}

html.loading .loginModal {
    left: 100%;
    margin-left: 20px;
    opacity: 0;
}


