@font-face {
    font-family: 'icomoon';
    font-style: normal;
    font-weight: normal;
    src: url('/static/fonts/icomoon.eot?8o2odu');
    src: url('/static/fonts/icomoon.eot?8o2odu#iefix') format('embedded-opentype'),
         url('/static/fonts/icomoon.ttf?8o2odu') format('truetype'),
         url('/static/fonts/icomoon.woff?8o2odu') format('woff'),
         url('/static/fonts/icomoon.svg?8o2odu#icomoon') format('svg');
}

[class^="icon-"], [class*=" icon-"] {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    font-family: 'icomoon' !important;
    font-style: normal;
    font-variant: normal;
    font-weight: normal;
    line-height: 1;
    speak: none;
    text-transform: none;
}

.icon-eclipse-pro:before { /* content: "\e900"; */ }

*,
*:before,
*:after { box-sizing: border-box; }

*:focus { outline: none; }

html,
body {
    -moz-font-smoothing: auto;
    height: 100%;
    margin: 0;
    padding: 0;
    width: 100%;
}

html {
    -moz-font-smoothing: antialiased;
    -webkit-font-smoothing: antialiased;
    font-family: "Roboto", "Helvetica Neue", "Arial", sans-serif;
    font-size: 62.5%;
    letter-spacing: -.1px;
    line-height: 1.4;
}

body {
    background: #f5f5f5;
    overflow-x: hidden;
    overflow-y: scroll;
}

[ui-view], .ui-view {
    -moz-transform-style: preserve-3d;
    -webkit-transform-style: preserve-3d;
    height: 100%;
    transform-style: preserve-3d;
    width: 100%;
}

.body-cover {
    background: url('/static/images/background.png') no-repeat center center;
    background-size: cover;
    bottom: 0;
    left: 0;
    opacity: 1;
    position: fixed;
    right: 0;
    top: 0;
    transform: scale(1.2);
}

.logo {
    background: url('/static/images/logo.png') no-repeat center center;
    height: 150px;
    line-height: 136px;
    margin: 32px auto;
    width: 150px;
}

.form-container {
    background: #fff;
    border-radius: 4px;
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, .2), 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12);
    margin: 32px auto;
    max-width: 340px;
    padding: 32px;
    position: relative;
    text-align: center;
    top: 10%;
}

.wide-container {
    background: #fff;
    box-shadow: 0 5px 5px -3px rgba(0, 0, 0, .2), 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12);
    margin: 32px auto;
    padding: 32px;
    position: relative;
    width: 95%;
}

@media only screen and (max-width: 480px) {
    .form-container {
        margin: 0 auto;
        top: 0;
        transform: translateY(0);
    }
}

form { font-size: 1.5rem; }

.input-container {
    /* width: 320px; */
    margin: 0 auto;
    padding: 2px 2px 26px;
    position: relative;
}

.input-container input {
    background-color: rgb(255, 255, 255);
    border: none;
    border-bottom: rgba(0, 0, 0, 0.12) solid 1px;

    font-size: 15px;
}

.form-input {
    background: 0 0;
    border-color: rgba(0, 0, 0, 0.12);
    border-radius: 0;
    border-width: 0 0 1px 0;
    display: block;
    line-height: 26px;
    margin-top: auto;
    overflow: hidden;
    padding: 2px 2px 1px;
    transition: border 100ms ease;
    width: 320px;
}

.form-input:focus {
    border-color: #3c4252;
    box-shadow: 0 1px 0 0 #3c4252;
}

.input-container .hide { display: none; }

.form-container label {
    color: rgba(0, 0, 0, .35);
    font-weight: 500;
    margin-right: 8px;
    padding: 2px 2px 0;
}

.form-btn {
    background: #3a3a3a;
    border: 0;
    border-radius: 3px;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .26);
    color: #FFF;
    cursor: pointer;
    display: inline-block;
    display: block;
    font-size: 14px;
    font-weight: 500;
    line-height: 36px;
    margin: 16px auto;
    min-height: 36px;
    outline: none;
    padding: 0 6px;
    position: relative;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    width: 220px;
}

.form-btn-mini {
    background: none;
    border: none;
    border-radius: 3px;
    color: rgba(0, 0, 0, .54);
    cursor: pointer;
    float: right;
    font-size: 1.2rem;
    margin-left: 8px;
    outline: none;
    text-transform: uppercase;
}

.form-btn-mini:hover {
    background: #3a3a3a;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .26);
    color: #FFF;
}

.form-container a {
    color: rgb(236, 177, 0);
    display: inline-block;
    font-weight: 500;
    /* margin: 32px auto 0;
   width: 250px; */
    margin-left: 3px;
    /* font-size: 1.3rem; */
    text-decoration: none;
}

.form-container a:hover { text-decoration: underline; }

.form-row {
    align-items: center;
    display: flex;
    flex-direction: row;
    justify-content: center;
}

.invalid,
.error,
.form-input.error {
    border-bottom: solid 1px #F44336;
    box-shadow: 0 1px 0 0 #F44336;
}

.error-summary {
    color: #F44336;
    display: inline-block;
    font-size: 12px;
    line-height: 1.5;
    list-style: none;
    margin: 0;
    padding: 4px 0;
    text-align: left;
}

pre { font-size: 1.5rem; }