html, body {
    background: none;
    height: 100%;
    padding: 0;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Source Sans Pro', sans-serif;
}

html {
    background: rgb(230,230,230);
    background: linear-gradient(0deg, rgba(230,230,230,1) 0%, rgba(139,151,159,1) 100%);
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    height: 100%;
}

body,
body * {
    font-weight: 200;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
}

.table-wrapper {
    height: 100vh;
    width: 100vw;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.table-wrapper:after {
    content: '© 2009 - 2021 Site Stacker. All rights reserved.';
    position: fixed;
    width: 100%;
    text-align: center;
    bottom: 0;
    color: #424d54;
    font-size: 12px;
    padding-bottom: 10px;
}

.table-cell-wrapper {
    display: flex;
    justify-content: stretch;
    align-items: stretch;
    box-shadow: 0 0 10px #6E7B83;
    border-radius: 7px;
    overflow: hidden;
    margin: 0;
    background: #fff;
}

.table-cell-wrapper:after {
    content: '';
    width: 300px;
    background-image: url('../img/login-bg.png');
    background-size: cover;
    background-position: center;
}

#wrap {
    margin: 0;
    background: #fff;
    overflow: hidden;
    border: none 0;
    width: 450px;
    padding: 30px;
}

#wrap #header {
    background-color: transparent;
    background-image: url('../img/ss-logo-gray.png');
    background-size: contain;
    background-position: top left;
    background-repeat: no-repeat;
    height: 72px;
    padding: 0;
    margin-bottom: 26px;
}

#wrap #header * {
    display: none;
}

#wrap #content {
    margin: 0;
    padding: 0;
}
#wrap #content > h2 {
    margin: 0;
    padding: 0;
    border: none 0;
    font-weight: 400;
}
#wrap #content > p {
    margin: 0;
    padding: 0;
    padding-bottom: 6px;
    font-size: 14px;
}
#wrap #content > form {
    display: flex;
    justify-content: stretch;
    align-items: flex-start;
    flex-wrap: wrap;
}
#wrap #content > form select {
    flex: 1;
    flex-basis: 100%;
    order: 1;
    font-size: 20px;
    font-weight: 200;
    margin: 0;
    background-color: transparent;
    background-image: url(../img/icon-pass-dark.png), url('../img/chevron-down-dark.png');
    background-repeat: no-repeat, no-repeat;
    background-position: center left, center right;
    border: none 0;
    padding-right: 8px;
    padding-left: 48px;
    margin-bottom: 20px;
    outline: none;
    width: 100%;
    color: #6E7B83;
    height: 48px;
    border-bottom: solid 1px #6E7B83;

    /*-webkit-transition: all 0.5s ease;*/
    /*-moz-transition: all 0.5s ease;*/
    /*-ms-transition: all 0.5s ease;*/
    /*-o-transition: all 0.5s ease;*/
    /*transition: all 0.5s ease;*/

    appearance: none;
    -webkit-appearance: none;
    /*background: rgba(255,255,255,0.2);*/
}
#wrap #content > form select:focus {
    background-color: transparent !important;
}

#wrap #content > form select:-webkit-autofill {
    background-color: transparent !important;
    -webkit-box-shadow: 0 0 0 50px #fff inset !important;
}
#wrap #content > form input[type=submit] {
    flex: 1;
    flex-basis: 100%;
    order: 4;
    margin-top: 20px;
    border: solid 1px #6E7B83;
    color: #6E7B83;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 400;
    padding: 10px 0;
    cursor: pointer;
    width: 100%;
    background: none;
}
#wrap #content > form br {
    display: none;
}
#wrap #content > form input[type=checkbox] {
    order: 2;
    width: 24px;
    height: 24px;
}
#wrap #content > form label {
    order: 3;
    display: block;
    margin-left: 10px;
    font-size: 16px;
}