@font-face {
    font-family: 'Roboto';
    src: local('Roboto'), local('Roboto-Regular'), url('/boss/assets/fonts/Roboto.woff2') format('woff2'), url('/boss/assets/fonts/Roboto.woff') format('woff'), url('/boss/assets/fonts/Roboto.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Roboto';
    src: local('Roboto Medium'), local('Roboto-Medium'), url('/boss/assets/fonts/Robotomedium.woff2') format('woff2'), url('/boss/assets/fonts/Robotomedium.woff') format('woff'), url('/boss/assets/fonts/Robotomedium.ttf') format('truetype');
    font-weight: 500;
    font-style: normal;
}


::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: #aaa;
}

:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: #aaa;
}

::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: #aaa;
}

:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: #aaa;
}


* {
    margin: 0;
    padding: 0;
    border: 0;
}

body {
    background: url(/boss/assets/i/login/bg.png) repeat;
    font-family: 'Roboto', Helvetica, Arial, sans-serif;
    font-weight: 400;
    text-align: left;
    text-decoration: none;
}

#wrapper {
    width: 300px;
    height: 400px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -150px;
    margin-top: -200px;
}

.login-form {
    width: 300px;
    margin: 0 auto;
    position: relative;
    z-index: 5;

    background: #f3f3f3;
    border: 1px solid #fff;
    border-radius: 5px;

    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
}


.login-form .header {
    padding: 20px 30px 20px 30px;
}

.login-form .header h1 {
    font-weight: 400;
    font-size: 22px;
    line-height: 30px;
    color: #414848;
}


.login-form .content {
    padding: 0 30px 25px 30px;
}

/* Input field */
.login-form .content .input {
    width: 188px;
    padding: 15px 25px;

    font-family: 'Roboto';
    font-weight: 400;
    font-size: 14px;
    color: #9d9e9e;

    background: #fff;
    border: 1px solid #fff;
    border-radius: 5px;

    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.50);
    -moz-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.50);
    -webkit-box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.50);
}

.login-form .content .password, .login-form .content .pass-icon {
    margin-top: 25px;
}

.login-form .content .input:hover {
    background: #dfe9ec;
    color: #414848;
}

.login-form .content .input:focus {
    background: #dfe9ec;
    color: #414848;

    box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25);
    -webkit-box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25);
}

.user-icon, .pass-icon {
    width: 46px;
    height: 47px;
    display: block;
    position: absolute;
    left: 0px;
    padding-right: 2px;
    z-index: 3;

    -moz-border-radius-topleft: 5px;
    -moz-border-radius-bottomleft: 5px;
    -webkit-border-top-left-radius: 5px;
    -webkit-border-bottom-left-radius: 5px;
}

.user-icon {
    top: 73px;
    background: rgba(65, 72, 72, 0.75) url(/boss/assets/i/login/user-icon.png) no-repeat center;
}

.pass-icon {
    top: 150px;
    background: rgba(65, 72, 72, 0.75) url(/boss/assets/i/login/pass-icon.png) no-repeat center;
}


/* Animation */
.input, .user-icon, .pass-icon, .button, .register {
    transition: all 0.5s;
    -moz-transition: all 0.5s;
    -webkit-transition: all 0.5s;
    -o-transition: all 0.5s;
    -ms-transition: all 0.5s;
    outline: none;
}


.login-form .footer {
    padding: 25px 30px 20px 30px;
    overflow: auto;

    background: #d4dedf;
    border-top: 1px solid #fff;

}

/* Login button */
.login-form .footer .button {
    padding: 11px 25px;
    font-family: 'Roboto';
    font-weight: 400;
    font-size: 18px;
    color: #fff;
    width: 100%;

    background: #56c2e1;
    border-radius: 5px;
    cursor: pointer;
    border-bottom: 2px solid #3f9db8;
}

.login-form .footer .button:hover {
    background: #3f9db8;
}

.iwix {
    padding-top: 10px;
    text-align: right;
}

.iwix a {
    font-size: 12px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid #777;
    padding-bottom: 1px;
}

.iwix a:hover {
    opacity: 0.7;
}

