body, button, input {
    font-family: 'Roboto Condensed', sans-serif;
    font-size: 1.25rem;
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus {
    -webkit-text-fill-color: #ffffff;
    -webkit-box-shadow: 0 0 0 40rem #000000 inset;
}

.background-full {
    background-image: url("../images/ssl/background_ssl.jpg");
    background-size: cover;
    background-position: center;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.login-screen {
    flex-direction: column;
}

.login-form-section {
    width: 17rem;
    height: 17rem;
}

.login-form-section h1 {
    font-family: 'Kanit', sans-serif;
    color: var(--theme);
    font-size: 1.75rem;
    margin: .5rem 0 0 0;
}

.login-form-section:first-child {
    flex-direction: column;
    background-color: var(--base0);
    border-radius: .5rem .5rem 0 0;
}

.login-form-section:last-child {
    flex-direction: column;
    border-radius: 0 0 .5rem .5rem;
    background-color: rgba(0, 0, 0, .75);
    padding: 2rem;
}

.login-form-brand img {
    width: 50%;
    height: auto;
}

.login-form .form-row {
    display: grid;
    grid-template-columns: 2rem 11rem;
    border-bottom: 1px solid var(--theme);
    margin-bottom: 1.25rem;
}

.login-form .form-row i {
    color: var(--base0);
    margin-bottom: .25rem;
}

.login-form .form-row input {
    background-color: transparent;
    color: var(--base0);
    border: none;
    outline: none;
    padding: .125rem 0;
}

.login-form .form-row input::placeholder {
    color: var(--theme);
}

.login-form button {
    margin-top: 1rem;
    color: var(--theme50);
    border: 1px solid var(--theme);
}

.login-form button::before {
    background-color: var(--theme);
}

footer {
    position: fixed;
    width: 100%;
    bottom: .5rem;
    padding: .75rem 2rem;
    background-color: rgba(0, 0, 0, .5);
    text-align: center;
    font-size: 1rem;
    color: var(--base0);
    text-shadow: var(--shadow);
}

footer span {
    display: block;
    color: transparent;
    text-shadow: none;
    height: .25rem ;
    padding: 0;
}

@media only screen and (min-width: 50rem) {

    footer span {
        display: inline-block;
        color: #e4e5e7;
        text-shadow: 2px 2px 2px #000000;
        padding: 0 .5rem;
    }
}

@media only screen and (min-width: 36em) {

    .login-screen {
        flex-direction: row;
    }

    .login-form-section:first-child {
        border-radius: .5rem 0 0 .5rem;
    }

    .login-form-section:last-child {
        border-radius: 0 .5rem .5rem 0;
    }
}