﻿h1 {
    font-weight: bold;
    margin-bottom: 20px;
    font-size: 32px;
}

.navbar {
    margin-bottom: 0px !important;
}

* {
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

    *:focus {
        outline: none;
    }

.login {
    max-width: 450px;
    margin: auto;
    margin-top: 85px;
}

.login-screen {
    background-color: #D0D0D0;
    padding: 20px;
    border-radius: 10px;
}

.username-group {
    display: none;
}

.app-title {
    text-align: center;
    color: #777;
}

.login-form {
    text-align: center;
}

.control-group {
    margin-bottom: 15px;
}

input {
    text-align: left;
    background-color: #ECF0F1;
    border: 2px solid transparent;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 200;
    padding: 10px 0;
    width: 80% !important;
    -moz-transition: border .5s;
    -o-transition: border .5s;
    -webkit-transition: border .5s;
    transition: border .5s;
    margin-left: auto !important;
    margin-right: auto !important;
}

select {
    text-align: left;
    background-color: #ECF0F1;
    border: 2px solid transparent;
    border-radius: 3px;
    font-size: 16px;
    font-weight: 200;
    padding: 10px 0;
    width: 80%;
    height: auto;
    -moz-transition: border .5s;
    -o-transition: border .5s;
    -webkit-transition: border .5s;
    transition: border .5s;
    margin-left: auto !important;
    margin-right: auto !important;
}

input:focus {
    border: 2px solid #3498DB;
    box-shadow: none;
}

select:focus {
    border: 2px solid #3498DB;
    box-shadow: none;
}

.btn {
    border: 2px solid transparent;
    background: #3498DB;
    color: #ffffff;
    font-size: 16px;
    line-height: 25px;
    padding: 10px 0;
    text-align: center;
    text-decoration: none;
    text-shadow: none;
    border-radius: 3px;
    box-shadow: none;
    -moz-transition: 0.25s;
    -o-transition: 0.25s;
    -webkit-transition: 0.25s;
    transition: 0.25s;
    display: block;
    width: 80% !important;
    margin-top: 20px;
    margin-left: auto !important;
    margin-right: auto !important;
}

    .btn:hover {
        background-color: #2980B9;
    }

.login-link {
    font-size: 12px;
    color: #444;
    display: block;
    margin-top: 50px;
}

.checkbox {
    width: 35%;
    margin-left: auto;
    margin-right: auto;
}

    .checkbox input {
        width: 20px !important;
    }

    .checkbox label {
        font-size: 16px !important;
    }


/* Sticky Footer*/
html {
    position: relative;
    min-height: 100%;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 40px;
}

.footer {
    position: absolute;
    bottom: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: 85px;
}

.footer-container {
    width: 80%;
    border-top: 1px solid #D0D0D0;
    margin-right: auto;
    margin-left: auto;
}

    .footer-container > p {
        margin-top: 0px !important;
        font-size: 14px;
        line-height: 1.42857143;
        color: #333;
    }
