/**
 * Stylesheet for login screen
 */

#login_wrapper {
    position: fixed;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: #ebebeb;
    z-index: 10;
    overflow: auto;
}

#trac_logo {
    margin: 0px auto;
    background-image: url("../img/trac_logo.png");
    background-repeat: no-repeat;
    margin-bottom: 36px;
    width: 161px;
    height: 87px;
}

#login_button {
    height: 35px;
    background-color: #8f8e8e;
    border: 1px;
    border-radius: 2px;

    text-align: center;
    line-height: 35px;
    color: white;
    margin-top: 28px;

    cursor: pointer;
}

#login_button:hover {
    background-color: rgba(0, 0, 0, 0.5);
}

#login_button,
#login_button:hover {
    -webkit-transition: background-color 300ms;
    -moz-transition: background-color 300ms;
    -ms-transition: background-color 300ms;
    -o-transition: background-color 300ms;
    transition: background-color 300ms;
}


.outer {
    display: table;
    position: absolute;
    height: 100%;
    width: 100%;
}

.middle {
    display: table-cell;
    vertical-align: middle;
    padding: 20px;
}

.inner {
    margin-left: auto;
    margin-right: auto;
    width: 230px;
}

.login {
    width: 304px;
}

.form-check{
    text-align:center;
}

.action_buttons {
    text-align:center;
    padding-top: 25px;
}

.action_buttons a {
    color:#c96e62;
    font-style: italic;
    font-size: large;
}