html, body {
    width: 100vw;
    height: 100vh;
    margin: 0;
    padding: 0;
}

.wrapper {
    opacity: 0.9;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
}

.container {
    width: 350px;
    height: 350px;
    margin: 0 auto;
    text-align: center;
    position: relative;
}

.container .logo {
    overflow: hidden;
    height: 60px;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.container .logo h1 {
    padding-top: 2px;
    padding-left: 15px;
    float: left;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    text-shadow: 4px 3px 0 #1ABC9C, 90px 80px 0 rgba(0, 0, 0, 0.15);
}

.container .logo span {
    font-size: 30px;
    font-weight: bold;
}

.text_login_box {
    width: 100%;
    height: 250px;
}

@font-face {
    font-family: 'FontAwesome';
    src: url('../fonts/fontawesome-webfont.woff?v=4.5.0') format('woff');
    font-weight: normal;
    font-style: normal
}

form {
    width: 100%;
    height: 250px;
    position: relative;
    z-index: 2;
    text-align: left;
    background-color: #fff;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 5px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    /*box-shadow: 0 0 10px rgba(0, 0, 0, .1);*/
}

form .row {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 5px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

form input {
    font-size: 14px;
    outline: 0;
    border: 1px solid #ccc;
    background-color: #fff;
    width: 90%;
    border-radius: 5px;
    padding: 12px 15px;
    margin-bottom: 20px;
    display: block;
    text-align: left;
    transition-duration: 0.25s;
    font-weight: 300;
}

.fa {
    display: inline-block;
    font: normal normal normal 14px / 1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

form i {
    color: #cbcbcb;
    top: 13px;
    right: 6px;
    z-index: 99;
    position: absolute;
    display: block;
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 18px !important;
    vertical-align: middle;
}

.fa-user:before {
    content: "\f007";
}

.fa-key:before {
    content: "\f084";
}

.copyright {
    text-align: center;
    color: #fff;
    position: absolute;
    top: 100%;
    margin-top: -60px;
    width: 97%;
    line-height: 25px;
    font-size: 14px;
}

form button {
    outline: 0;
    background-color: #1ABC9C;
    border: 0;
    padding: 10px 15px;
    color: #fff;
    border-radius: 5px;
    width: 300px;
    cursor: pointer;
    font: 16px / 1.5 Lucida Grande, Lucida Sans Unicode, Helvetica Neue, Hiragino Sans GB, Microsoft Yahei, sans-serif;
}

.errornote {
    font-size: 0.875rem;
    font-weight: 700;
    display: block;
    padding: 10px 12px;
    margin: 0 0 10px 0;
    color: var(--error-fg);
    border: 1px solid var(--error-fg);
    border-radius: 4px;
    background-color: var(--body-bg);
    background-position: 5px 12px;
    overflow-wrap: break-word;
}