body {
    font: 100%/1.414 "Open Sans", "Roboto", arial, sans-serif;
    background: #e9e9e9;
}

a,
[type=submit] {
    transition: all 0.25s ease-in;
}

.login__container {
    width: 100%;
    height: 100vh;
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0.1875rem;
    box-shadow: 0px 0.1875rem 0.4375rem rgba(0, 0, 0, 0.25);
}

.login__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.76);
}

.container__child {
    width: 50%;
    height: 100%;
    color: #fff;
}

.login__thumbnail {
    position: relative;
    padding: 2rem;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    background: url(http://ultraimg.com/images/spectre-login.jpg);
    background-repeat: no-repeat;
    background-position: top center;
    background-size: cover;
}

.thumbnail__logo,
.thumbnail__content,
.thumbnail__links {
    position: relative;
    z-index: 2;
}

.thumbnail__logo {
    display: flex;
    justify-content: flex-start;
    align-self: flex-start;
    align-items: flex-start;
}

.logo__shape {
    fill: #fff;
}

.logo__text {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    vertical-align: bottom;
}

.thumbnail__content {
    width: 100%;
    align-self: center;
}

h1,
h2 {
    font-weight: 300;
    color: white;
}

.heading--primary {
    font-size: 1.999rem;
}

.heading--secondary {
    font-size: 1.414rem;
}

.thumbnail__links {
    display: flex;
    justify-content: center; /* centers horizontally */
    align-items: flex-end;
    width: 100%;
}

.thumbnail__links a {
    font-size: 1rem;
    color: #fff;
}
.thumbnail__links a:focus, .thumbnail__links a:hover {
    color: rgba(255, 255, 255, 0.5);
}

.login__form {
    margin-top: auto;
    padding: 2.5rem;
    background: #fafafa;
}

.form__div {
    height: 100%;
    align-content: center;
}

label {
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #ccc;
}

.form-group{
    padding: 10px 0;
}

.form-control {
    background-color: transparent;
    border-top: 0;
    border-right: 0;
    border-left: 0;
    border-radius: 0;
}
.form-control:focus {
    border-color: #111;
}

[type=text] {
    color: #111;
}

[type=password] {
    color: #111;
}

.btn--form {
    padding: 0.5rem 2.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    color: #fff;
    background: #111;
    border-radius: 0.7rem;
}
.btn--form:focus, .btn--form:hover {
    background: #323232;
}

.login__link {
    font-size: 0.8rem;
    font-weight: 600;
    text-decoration: underline;
    color: #999;
}
.login__link:focus, .login__link:hover {
    color: #787878;
}

.list-inline {
    display: flex;
    align-items: center;
    gap: 15px; /* space between items */
    list-style: none;
    padding: 0;
    margin: 0;
}

