* {
    box-sizing: border-box;
}
body {
    display: flex;
    flex-direction: column;
    font-family: Roboto,sans-serif;
    -webkit-font-smoothing: antialiased;
}
body, a {
    color: #000;
}
.login-container {
    display: flex;
    position: fixed;
    flex-direction: column;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: #3a3a3a;
    align-items: center;
    justify-content: center;
}
.login-box-container {
    width: 100%;
    max-width: 500px;
}
.login-box {
    width: 100%;
    padding: 15px;
    background: #fff;
    box-shadow: 0 0 5px #000;
    border-radius: 3px;
}
.login-box-header h1 {
    font-size: 1.3rem;
    text-align: center;
    font-weight: 300;
}
form {
    display: block;
    margin-top: 0;
    padding: 15px;
}
.login-copyright {
    width: 100%;
    text-align: right;
    padding-top: 5px;
}
.login-copyright, .login-copyright a {
    font-size: 12px;
    color: #fff;
}
.button-container {
    text-align: center;
}
button {
    position: relative;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    cursor: pointer;
    outline: none;
    border: none;
    -webkit-tap-highlight-color: transparent;
    display: inline-block;
    white-space: nowrap;
    text-decoration: none;
    vertical-align: baseline;
    text-align: center;
    margin: 0;
    min-width: 64px;
    line-height: 36px;
    padding: 0 16px;
    border-radius: 4px;
    overflow: visible;
    transform: translate3d(0, 0, 0);
    transition: background 400ms cubic-bezier(0.25, 0.8, 0.25, 1),box-shadow 280ms cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 3px 1px -2px rgba(0,0,0,.2), 0 2px 2px 0 rgba(0,0,0,.14), 0 1px 5px 0 rgba(0,0,0,.12);
}
.form-group {
    position: relative;
    text-align: left;
    line-height: 1.125;
    margin-bottom: 1rem;
    letter-spacing: normal;
}
.form-group-field-wrapper {
    padding-bottom: 1.25em;
    position: relative;
}
.form-group-field-flex {
    display: inline-flex;
    align-items: baseline;
    box-sizing: border-box;
    width: 100%;
}
.form-group-field-infix {
    border-top: .84375em solid transparent;
    display: block;
    position: relative;
    flex: auto;
    min-width: 0;
    width: 180px;
    padding: .4375em 0;
}
.input-element {
    background: transparent;
    color: currentColor;
    border: none;
    outline: none;
    padding: 0;
    width: 100%;
    max-width: 100%;
    vertical-align: bottom;
    text-align: inherit;
    caret-color: #8bc34a;
    -webkit-appearance: none;
    margin: -.0625em 0 0 0;
}
.form-group-label-wrapper {
    position: absolute;
    left: 0;
    box-sizing: content-box;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    top: -.84375em;
    padding-top: .84375em;
}
.form-group-field-underline {
    height: 1px;
    background-color: rgba(0,0,0,.42);
    bottom: 1.25em;
    position: absolute;
    width: 100%;
    pointer-events: none;
    transform: scale3d(1, 1.0001, 1);
}
.form-group-label {
    color: #676767;
    position: absolute;
    left: 0;
    top: 1.28125em;
    font: inherit;
    pointer-events: none;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    transform-origin: 0 0;
    transform: translateY(-1.28125em) scale(.75) perspective(100px) translateZ(.001px);
    width: 133.3333433333%;
}
.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}
.alert {
    position: relative;
    padding: .75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: .25rem;
}