.login {
    display: flex;
    -webkit-align-items: center;
    -ms-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    -moz-justify-content: center;
    -ms-justify-content: center;
    justify-content: center;
    background: url(images/background.jpg) no-repeat center;
    background-size: cover;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
}

.login-form {
    box-shadow: 0 5px 40px rgba(0,0,0,.5);
    background-color: #fff;
    padding: 24px;
    width: 300px;
    text-align: center;
    margin-bottom: 20px;
}

.login-form .logo
{
    margin: 10px 0 30px 0;
}

.login-form h1 {
    display: block;
    font-size: 14px;
    color: #095da8;
    text-transform: uppercase;
    font-weight: 600;
    border-top: 2px solid #095da8;
    margin: 10px 0 15px 0;
}

.login-form h1 span {
    display: inline-block;
    background-color: #fff;
    position: relative;
    padding: 0 12px;
    top: -10px;
    z-index: 10;
    font-size: 1.2em;
}

.login .version span
{
    font-size: 0.7em;
}

.login .version
{
    position: absolute;
    left: 0;
    right: 0;
    bottom: 5px;
}


.btn.loading 
{
    background-image: url(images/loader_small.svg);
    background-repeat: no-repeat;
    background-position: 8px center;
    background-size: 28px;
    cursor: default!important;   
}

.btn:focus
{
    box-shadow: none;
}

button.btn, input.btn {
    cursor: pointer;
    border: none;
    outline: none;
    -webkit-appearance: none;
}
.btn.btn-size-2 {
    font-size: 14px;
    padding: 0px;
    height: 30px;
}
.btn.btn-size-3 {
    font-size: 14px;
    padding: 12px 48px 11px;
}
.btn.btn-primary {
    transition: all 250ms ease;
    background-position: 8px center;
    background-color: #095da8;
}

.btn.btn-primary:hover {
    background-color: #3270a7;
}

.form-row {
    margin: 0 0 12px 0;
    position: relative;
}


.login-form .form-row.icon-label label {
    left: 0;
    top: 0;
    height: 100%;
    width: 28px;
    position: absolute;
    line-height: 41px;
    font-size: 1.6em;
    color: #095da8;
}
.form-row .label {
    display: inline-block;
    font-size: 14px;
    font-weight: 500;
    line-height: 1;
    margin: 0 0 6px 0;
}


.login-form .form-row.icon-label input {
    transition: all 250ms ease;
    border-left: none;
    border-top: none;
    border-right: none;
    border-bottom-width: 2px;
    padding: 12px 12px 12px 40px;
}

input[type="text"], input[type="email"], input[type="password"], input[type="search"], input[type="number"], input[type="date"], textarea 
{
    width: 100%;
    border: 1px solid #c3d0d3;
    background-color: #fff;
    font-size: 14px;
    outline: none;
    margin: 0;
    border-radius: 0;
    color: #535353;
    min-height: 32px;
    resize: none;
    -ms-appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
}


input[type="text"]:focus, input[type="email"]:focus, input[type="password"]:focus, input[type="search"]:focus, input[type="number"]:focus, input[type="date"]:focus, textarea:focus {
    border-color: #095da8;
    color: #535353;
    outline: none;
}

label, submit {
    cursor: pointer;
}




.btn.btn-inline {
    font-size: 12px;
    font-weight: 600;
    padding: 1px 5px 0;
}
.btn.btn-secondary {
    border: 2px solid #095da8;
    color: #095da8;
    background-color: transparent;
}

.btn.btn-secondary:hover {
    background-color: #095da8;
    color: #fff;
}

.show > .btn-secondary.dropdown-toggle {
    border: 2px solid #095da8;
    background-color: #095da8;
}


.hint {
    border-radius: 3px;
    background-color: #f8e4e4;
    display: none;
    clear: both;
    text-align: center;
    
    padding: 12px;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.hint.active
{
    display: block;
}

.hint p {
    margin: 0;

}

.dropdown-menu
{
    min-width: 10px;
}

.w-60 {
    width: 60%;
}

.w-30 {
    width: 30%;
}