﻿/* Apply border-box sizing to all elements */
*,
*::before,
*::after {
    box-sizing: border-box;
}

/* ---------- GENERAL ---------- */

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

@font-face {
    font-family: 'Glyphicons Halflings';
    src: url('../../fonts/glyphicons-halflings-regular.eot');
    src: url('../../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../../fonts/glyphicons-halflings-regular.woff2') format('woff2'), url('../../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular') format('svg');
}

.glyphicon {
    position: relative;
    top: 1px;
    display: inline-block;
    font-family: 'Glyphicons Halflings';
    font-style: normal;
    font-weight: normal;
    line-height: 1;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.glyphicon-lock:before {
    content: "\e033";
}

.glyphicon-user:before {
    content: "\e008";
}

.glyphicon-picture:before {
    content: "\e060";
}

.glyphicon-repeat:before {
    content: "\e030";
}

.captcha_img_block {
    margin: 0px 0px 10px 0px;
}

.captcha_img {
    display: inline-block;
}

body {
    background-color: #2D2F36;
    color: #606468;
    font-family: Verdana, sans-serif;
    font-size: 14px;
    line-height: 1;
}

.logo {
    text-align: center;
    margin-bottom: 45px;
}

a {
    color: #217eca;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

input {
    border: none;
    font-family: Verdana, sans-serif;
    font-size: 14px;
    line-height: 1.5em;
    padding: 0;
}

p {
    line-height: 1.8em;
}

.clearfix {
    *zoom: 1;
}

/* For IE 6/7 */
.clearfix:before, .clearfix:after {
    display: table;
    content: "";
}

.clearfix:after {
    clear: both;
}

/* ---------- LOGIN ---------- */

#login {
    margin: 50px auto;
    width: 280px;
}

#login .rc-input-label {
    margin-top: 6px;
    margin-bottom: 4px;
    color: #d2d2d7;
    font-size: 13px;
}

#login .rc-input-label.multiline {
    align-items: flex-start;
    line-height: 1.3em;
}

#login .rc-input-label.multiline .rc-input {
    top: 1px;
    transform: none;
}

#login .rc-input {
    border-color: #606468;
    background-color: #606468;
}

#login span.glyphicon {
    background-color: #363b41;
    border-radius: 3px 0 0 3px;
    -moz-border-radius: 3px 0 0 3px;
    -webkit-border-radius: 3px 0 0 3px;
    color: #606468;
    display: block;
    float: left;
    height: 50px;
    line-height: 50px;
    text-align: center;
    width: 50px;
}

#login input[type="text"], input[type="password"], .lang {
    position: relative;
    z-index: 1;
    background-color: #3b4148;
    border-radius: 0 3px 3px 0;
    -moz-border-radius: 0 3px 3px 0;
    -webkit-border-radius: 0 3px 3px 0;
    color: #EFEFF2;
    margin-top: 1px;
    margin-bottom: 1em;
    padding: 0 16px;
    width: calc(100% - 50px);
    height: 50px;
}

.lang {
    width: 230px;
    border: none;
    font-family: Verdana, sans-serif;
    font-size: 14px;
}

#login form input[type="submit"] {
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    background-color: #00856E;
    color: #eeeeee;
    font-weight: bold;
    margin-top: 1em;
    margin-bottom: 15px;
    width: 280px;
    cursor: pointer;
    height: 50px;
}

#login form input[type="submit"]:hover {
    background-color: #007661;
}

#login > p {
    text-align: center;
}

#login > p span {
    padding-left: 5px;
}

.register {
    text-align: center;
}

.copy {
    font-size: 13px;
    text-align: center;
    padding-top: 15px;
}

.error {
    color: #c6464c;
    display: block;
    text-align: center;
    padding-bottom: 10px;
}

.alert {
    position: relative;
    padding: 15px;
    margin-bottom: 15px;
    border: 1px solid transparent;
    border-radius: 4px;
    line-height: 1.3em;
}

.alert-danger {
    color: #ffffff;
    font-weight: 500;
    text-align: center;
    background-color: #d9534f;
    border-color: #d9534f;
}

.alert-danger:after {
    position: absolute;
    top: 100%;
    left: -8px;
    content: "";
    border: 8px solid transparent;
    border-top: 8px solid #d9534f;
    margin-left: 50%;
}

.change-credentials-block .alert-danger {
    background-color: #344ab9;
    border-color: #344ab9;
}

.change-credentials-block .alert-danger:after {
    border-top: 8px solid #344ab9;
}

.change-credentials-block input[type="button"] {
    background-color: #344ab9 !important;
}

.change-credentials-block input[type="button"] {
    border-radius: 3px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    background-color: #00856E;
    color: #eeeeee;
    font-weight: bold;
    margin-top: 1em;
    margin-bottom: 15px;
    width: 280px;
    cursor: pointer;
    height: 50px;
}

.hide {
    display: none !important;
}

.change-credentials-block {
    margin-top: 15px;
}

#changeCredentialBlock {
    margin-top: 15px;
}

.disabled-block {
    color: #808080;
    opacity: 0.55;
    pointer-events: none;
}