#login_wrapper {
    position: relative;
    width: 100%;
    height: 100vh;
    background-color: whitesmoke;
}

#title_wrapper {
    position: relative;
    width: 50%;
    height: 100vh;
    float: left;
    background-color: none;
}

#image_wrapper {
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    background-color: none;
    transform: translate(-50%, -50%);
}

#form_outer {
    position: relative;
    width: 50%;
    float: right;
    z-index: 1;
    height: 100vh;
    background-image: url('/static/assets/images/login/tools_background.png');
    background-size: contain;
}

#form_wrapper {
    position: absolute;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 450px;
    height: 75%;
    background-image: url('/static/assets/images/login/shape.png');
    background-repeat: no-repeat;
    background-size: contain;
}

#login_form {
    padding: 25px;
    margin-top: 25px;
}

#lock {
    padding-top: 3em;
}

#container {
    position: relative;
    margin-top: 2em;
    font-size: 1em;
}

#rmc {
    color: whitesmoke;
}

footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 63px;
}

a {
    color: lightgoldenrodyellow;
}

a:link {
    color: lightgoldenrodyellow;
}

a:visited {
    color: aliceblue;
}

a:hover {
    color: lightyellow;
}


/* Icons */

#Logo {
    position: relative;
    text-align: center;
    top: 26%;
    left: 37%;
}

#Title {
    position: relative;
    text-align: center;
    top: 29%;
    left: 11.5%;
}

input[type="text"].form-control,
input[type="password"].form-control {
    width: 400px;
    margin: 0 auto;
}

#login_wrapper button {
    color: white;
    border-color: white;
}

#login_wrapper .text-muted {
    color: white !important;
}