*,
*:after,
*::before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

html, body {
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-color: #F8F8F6;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #000;
}

a {
    color: #437192;
    text-decoration: none;
}

a:hover {
    color: #437192;
    text-decoration: underline;
}

a:active {
    color: #F90;
}

a:focus {
    outline: none;
}

input, select, textarea {
    border: #E6E3E1 solid 1px;
    border-radius: 3px;
    padding: 3px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 400;
    font-size: 12px;
    color: #000;
    vertical-align: middle;
}

input {
    width: 200px;
    -webkit-transition: all 0.3s ease-in-out;
    -moz-transition: all 0.3s ease-in-out;
    -o-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    outline: none;
}

select {
    width: 260px;
    padding: 2px 3px;
}

[placeholder]:focus::-webkit-input-placeholder {
    -webkit-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: translate(120px, 0);
    -moz-transform: translate(120px, 0);
    -ms-transform: translate(120px, 0);
    -o-transform: translate(120px, 0);
    transform: translate(120px, 0);
    opacity: 0;
}

.login {
    width: 260px;
    position: fixed;
    top: 50%;
    left: 50%;
    margin-top: -220px;
    margin-left: -130px;

    -webkit-animation-name: bounceIn;
    -webkit-animation-fill-mode: both;
    -webkit-animation-duration: .3s;
    -webkit-animation-iteration-count: 1;
    -webkit-animation-timing-function: linear;
    -moz-animation-name: bounceIn;
    -moz-animation-fill-mode: both;
    -moz-animation-duration: .3s;
    -moz-animation-iteration-count: 1;
    -moz-animation-timing-function: linear;
    animation-name: bounceIn;
    animation-fill-mode: both;
    animation-duration: .3s;
    animation-iteration-count: 1;
    animation-timing-function: linear;
}

@-webkit-keyframes bounceIn {
    0% {
        opacity: 0;
        -webkit-transform: scale(.3);
    }
    70% {
        -webkit-transform: scale(.9);
    }
    100% {
        -webkit-transform: scale(1);
    }
}

@-moz-keyframes bounceIn {
    0% {
        opacity: 0;
        -moz-transform: scale(.3);
    }
    70% {
        -moz-transform: scale(.9);
    }
    100% {
        -moz-transform: scale(1);
    }
}

@-ms-keyframes bounceIn {
    0% {
        opacity: 0;
        -ms-transform: scale(.3);
    }
    70% {
        -ms-transform: scale(.9);
    }
    100% {
        -ms-transform: scale(1);
    }
}

@-o-keyframes bounceIn {
    0% {
        opacity: 0;
        -o-transform: scale(.3);
    }
    70% {
        -o-transform: scale(.9);
    }
    100% {
        -o-transform: scale(1);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(.3);
    }
    70% {
        transform: scale(.9);
    }
    100% {
        transform: scale(1);
    }
}

.bounceIn {
    -webkit-animation-name: bounceIn;
    -moz-animation-name: bounceIn;
    -o-animation-name: bounceIn;
    animation-name: bounceIn;
}

.placeholder {
    background: #FFF;
    box-shadow: 0 1px 1px #CCC;
    border-radius: 2px;
}

.deep {
    background-color: #FAFCFD;
    border-bottom: solid #E5E5E5 1px;
    box-shadow: inset 0 4px 9px -6px #888;
    padding: 20px;
}

.info {
    padding: 20px 30px;
}

.form_table {
    border-spacing: 0;
}

.form_table td {
    padding: 3px 0 3px 0;
    vertical-align: top;
    text-align: center;
}

.btn-placeholder {
    margin-top: 20px;
}

.btn {
    border-radius: 3px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border-left: #E3E4E4 solid 1px;
    border-right: #E3E4E4 solid 1px;
    border-bottom: #D3D4D4 solid 1px;
    border-top: #E3E4E4 solid 1px;
    background: #D9DADA;
    background-image: -webkit-linear-gradient(top, #F9FAFA, #E3E3E3);
    background-image: -moz-linear-gradient(top, #F9FAFA, #E3E3E3);
    background-image: -ms-linear-gradient(top, #F9FAFA, #E3E3E3);
    background-image: -o-linear-gradient(top, #F9FAFA, #E3E3E3);
    padding: 4px 20px 5px 20px;
    font-size: 14px;
    display: inline-block;
    text-decoration: none;
    color: #000;
    text-shadow: 0 1px #FFF;
    vertical-align: middle;
    width: auto;
    cursor: pointer;
    margin-top: 10px;
}

.btn:hover {
    background-image: -webkit-linear-gradient(top, #F3F4F4, #E3E3E3);
    background-image: -moz-linear-gradient(top, #F3F4F4, #E3E3E3);
    background-image: -ms-linear-gradient(top, #F3F4F4, #E3E3E3);
    background-image: -o-linear-gradient(top, #F3F4F4, #E3E3E3);
    color: #000;
    text-decoration: none;
}

.btn:active {
    -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1), 0 1px 2px rgba(0, 0, 0, 0.05);
    color: #000;
}

.btn.blue {
    color: #FFF;
    font-weight: 600;
    border: 1px solid #4F7897;
    background: #658EAC;
    background-image: -webkit-linear-gradient(top, #7FA8C7, #4F7897);
    background-image: -moz-linear-gradient(top, #7FA8C7, #4F7897);
    background-image: -ms-linear-gradient(top, #7FA8C7, #4F7897);
    background-image: -o-linear-gradient(top, #7FA8C7, #4F7897);
    text-shadow: 0 -1px #000;
}

.btn.blue:hover {
    box-shadow: none;
    background-image: -webkit-linear-gradient(top, #6F98B7, #4F7897);
    background-image: -moz-linear-gradient(top, #6F98B7, #4F7897);
    background-image: -ms-linear-gradient(top, #6F98B7, #4F7897);
    background-image: -o-linear-gradient(top, #6F98B7, #4F7897);
}

.btn.blue:active {
    -webkit-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
    -moz-box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.15), 0 1px 2px rgba(0, 0, 0, 0.05);
}

.loading {
    position: relative;
}

.loading .info:after {
    background: #FFF url(../images/loading.gif) center center no-repeat;
    background-color: rgba(255, 255, 255, 0.75);
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    content: "";
}

.status-red {
    text-align: center;
    padding: 10px 20px 10px 20px;
    text-shadow: 0 1px rgba(255, 255, 255, 0.6);
    margin: 0 -20px 10px -20px;
    background-color: #DCB2B2;
    color: #8C0000;
    /*box-shadow: inset 0 2px 3px #CC8E8E;*/
}

.logo {
    width: 110px;
    height: 110px;
    margin: 0 auto 20px auto;
    background: url(../images/logo@2x.png) center center no-repeat;
    background-size: 110px 110px;
}

.error {
    position: relative;
    padding: 10px 10px 10px 50px;
    border-radius: 3px;
    margin: 0 0 10px 0;
    color: #8C0000;
    background-color: #DCB2B2;
    font-weight: 600;
    clear: both;
    text-align: left;
}

.error-alert {
    background: url(../images/icn-alert.png) #B45959 no-repeat center center;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    border-radius: 3px;
}

.ok {
    position: relative;
    padding: 10px 10px 10px 50px;
    border-radius: 3px;
    margin: 0 0 10px 0;
    color: #337F2D;
    background-color: #CFECCD;
    font-weight: 600;
    clear: both;
    text-align: left;
}

.ok-alert {
    background: url(../images/icn-alert.png) #337F2D no-repeat center center;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 40px;
    border-radius: 3px;
}