﻿
* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    outline: none;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    position: absolute;
}


.open-sans {
    font-family: 'Open Sans', sans-serif !important;
}
.login-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    display: table;
    background: url('../Images/background-min.jpg') no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-color: #252525 !important;
}

.middle {
    display: table-cell;
    vertical-align: middle;
}


.login-form {
    margin: 0px auto;
    max-width: 400px;
}

form {
    color: #5d5d5d;
    background: #f2f2f2;
    padding: 26px;
    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 0px;
    opacity: 0.9;
}

form img {
    display: block;
    margin: 0 auto;
    margin-bottom: 35px;
}

    form input,
    form button {
        font-size: 18px;
        margin: 16px 0;
    }

form > div {
    text-align: center;
}

.form-links {
    text-align: center;
    margin-top: 1em;
    margin-bottom: 50px;
}

.form-links a {
    color: #fff;
}

.btn-primary {
    background-color: #00b2f0;
    border-radius:0 !important;
}
.form-control {
    border-radius: 0 !important;
}

.login-alert {
    position: absolute !important;
    width: 100%;
    z-index: 999;
    bottom: 0;
    margin: 0 !important;
    border-radius: 0 !important;
}

@media only screen and (max-width: 600px) {
    .login-form {
        font: 16px/2em Lato, serif;
        margin: 25% auto;
        max-width: 100%;
    }
}


