/*--------------------------------------------------*\
           sign in
  \*--------------------------------------------------*/

body {
    font-family: 'Montserrat', sans-serif;
    position:absolute;
    height: 100%;
    width: 100%;
    overflow: hidden;
}

.bg {
    display: table;
    position: absolute;
    height: 100%;
    width: 100%;
    background-image: url(../img/bg.jpg);
    background-size: cover;
    background-position: center;
}

.sign-in .company-logo {
    max-height: 80px;
    margin: auto;
}

.bg .form-box {
    display: table-cell;
    vertical-align: middle;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 0;
}

.bg .form-panel {
    max-width: 400px;
    width: calc(100% - 40px);
    margin: auto;
    padding: 40px;
    background-color: #fff;
}

.form-control, .btn, .alert {
    border-radius: 0 !important;
}

.sign-in h2 {
    font-size: 24px;
}

.btn-primary {
    background-color: #012f5f;
    border-color: #012f5f;
}

.btn-primary:focus, .btn-primary:hover, .btn-primary.active.focus, .btn-primary.active:focus, .btn-primary.active:hover, .btn-primary:active.focus, .btn-primary:active:focus, .btn-primary:active:hover {
    transition: all 0.3s;
    background-color: #dd9916;
    border-color: #dd9916;
}

.sign-in .btn {
    margin-bottom: 30px;
    text-transform: uppercase;
    transition: all 0.25s;
}

.sign-in .btn:hover {
    box-shadow: 0 4px 7px rgba(0, 0, 0, 0.1), 0 3px 6px rgba(0, 0, 0, 0.1);
}

input {
    margin-top: 20px;
}


/**************************
    Sticky Footer
**************************/
html {
    position: relative;
    min-height: 100%;
}

#footer {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100%;
    /* Set the fixed height of the footer here */
    height: auto;
    background-color: rgba(37, 36, 44, 0.8);
    padding: 12px 15px;
}

#footer p {
    margin-bottom:0;
    color: #ffffff;
    text-align: right;
    padding-right: 15px;
}

#footer a {
    color: inherit;
}

@media(max-width:1090px) {
    #footer p {
        text-align: left;
        font-size:12px
    }
}