/*Login Page*/
#wrap {
    background: white;
}
.login-page-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.login {
    display: block;
    max-width: 280px;
}

.login-head {
    text-align: left;
    font-size: 24px;
    font-weight: bold;
}

.success {
    font-size: 50px;
    font-weight: 900;
}

.login-center {
    text-align: left;
    width: 100%;
    line-height: 20px;
    margin: 20px 0 10px;
}
.login-center.error-message {
    color: #FF693C;
}

.link-message {
    position: relative;
    font-size: 20px;
    margin-top: 80px;
    width: 300px;
}

.field-container {
    position: relative;
    height: 80px;
    padding-top: 40px;
}
form .login-input,
form .login-input:focus {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    border: 2px solid #E0E0E0;
    border-radius: 4px;
    -webkit-appearance: none;
    -moz-appearance: none;
    color: #1A1918;
    margin: 0;
    height: 40px;
    background: white;
}
form .login-input:focus {
    border-color: #2196F3;
}
.field-label {
    color: #939393;
    font-size: 14px;
    line-height: 14px;
    height: 14px;
    margin-bottom: 10px;
    position: absolute;
    bottom: 40px;
    left: 0;
}
form .login-input:focus + .field-label {
    color: #2196F3;
}

.login-failed {
    color: #FF693C;
    text-align: center;
}

.login-page-btn:hover,
input[type="submit"].login-page-btn:hover {
    background: #2BA0FF;
}

.login-page-btn,
input[type="submit"].login-page-btn {
    background-color: #2196F3;
    color: #fff;
    border: none;
    margin: auto;
    margin-top: 40px;
    width: 100%;
    height: 40px;
    line-height: 40px;
    padding: 0;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    display: block;
    text-align: center;
    cursor: pointer;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-transition: background .25s;
    -moz-transition: background .25s;
}

.home-btn {
    background-color: #2196f3;
    color: #fff;
    border: none;
    width: 135px;
    display: block;
    border-radius: 0;
    padding-top: 10px;
    -webkit-appearance: none;
    -moz-appearance: none;
    -webkit-transition: background .25s;
    border-radius: 5px;
    -moz-transition: background .25s;
    margin-left: auto;
    margin-right: auto;
    margin-top: 80px;
}

.login-bottom-links {
    width: 250px;
    margin: auto;
    margin-top: 15px;
}

.login-align-left {
    float: left;
    font-weight: normal;
    text-decoration: none;
}

.login-align-right {
    float: right;
    font-weight: normal;
    text-decoration: none;
}

.login-username-container {
    position: relative;
}
.login-help-icon {
    position: absolute;
    color: black;
    width: 40px;
    height: 40px;
    line-height: 40px;
    top: 0;
    right: 0;
    text-align: center;
    cursor: pointer;
}
.login-help-text {
    visibility: hidden;
    width: 250px;
    height: 75px;
    background: black;
    color: white;
    position: absolute;
    top: -15px;
    padding: 15px;
    border-radius: 4px;
    right: -255px;
    line-height: 20px;
    z-index: 1;
}
.login-help-text:before {
    content: '';
    width: 10px;
    height: 10px;
    border-radius: 2px;
    background: black;
    position: absolute;
    top: 30px;
    right: 245px;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}
.login-help-icon:hover .login-help-text {
    visibility: visible;
}

.footer {
    background: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40px;
}
.footer .copyright-text,
.footer .footer-links-right,
.footer a {
    font-size: 14px;
    top: 0;
    bottom: 0;
    line-height: 40px;
    color: #2196F3;
}


@media (max-width: 767px){

    #login {
        top: 20px;
        margin: 10px auto 60px;
        width: 320px;
        padding: 20px 20px 50px;
    }

    .login-help-text {
        top: 40px;
        right: 0;
    }
    .login-help-text:before {
        top: -4px;
        right: 15px;
    }
}
