html {
    height: 100vh;
    font-size: 18px;
    background: #101014 url(/images/auth_02.jpg) no-repeat center center fixed;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    -webkit-user-select: none;
    user-select: none;
}

body {
    height: 100vh;
    color: #eee;
    font-family:  "Segoe UI", "Trebuchet MS", "Droid Sans", Arial, "Lucida Sans", Helvetica, sans-serif;
    cursor: default;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    text-shadow: #000 0 0 2px;
}

.container {
    width: 340px;
    height: 440px;
    margin: 5em auto auto;
    text-align: center;
}

label {
    display: flex;
    background-color: rgba(255, 255, 255, .6);
    border-radius: 2px;
    transition: background-color .15s;
}
label:hover,
label:focus,
label:active {
    background-color: #fff;
}
label span {
    padding: .25em;
    text-align: center;
    color: #555;
    border-radius: 2px 0 0 2px;
    text-shadow: none;
}
label input {
    flex: 1;
    border: 0;
    padding: .25em .25em .25em .5em;
    outline: 0;
    transition: .15s;
    border-radius: 0 2px 2px 0;
    background: transparent;
    color: #101014;
}

h1 {
    margin: 0;
    padding-top: 24px;
    padding-bottom: 0px;
    font-size: 200%;
    white-space: nowrap;
}

.subheading {
    margin: 0;
    padding-top: 0px;
    padding-bottom: 36px;
    /*font-size: 200%;*/
    white-space: nowrap;
    font-size: 110%;
    opacity: 0.75;
}

.button,
.submit {
    font-size: 90%;
    font-weight: normal;
    background-color: #333;
    color: #aaa;
    width: 100%;
    padding: .4em;
    margin-top: 2em;
    border: 0;
    border-radius: 2px;
    cursor: pointer;
    transition: .15s ease-in-out;
    outline: 0;
}

.button:focus,
.button:hover,
.submit:focus,
.submit:hover {
    color: #fff;
    background-color: #444;
}
.button:active,
.submit:active {
    background-color: #fff;
    color: #111;
}

.info {
    color: #eee;
    margin-bottom: 24px;
}
.info strong {
    color: #fff;
}

.error {
    font-weight: normal;
    background: #500;
    margin-bottom: 24px;
    padding: .5em;
    border: 1px solid #b00;
    border-radius: 2px;
    font-size: .8rem;
}

.oi {
    flex: 0 0 32px;
    text-align: center;
    background-color: #fff;
    color: #555;
    border-radius: 2px 0 0 2px;
}
