/*----------------- Нестандартные шрифты -----------------*/
@font-face {
    font-family: 'Exo2Regular';
    src: url('/fonts/Exo2Regular.eot');
    src: url('/fonts/Exo2Regular.eot') format('embedded-opentype'),
         url('/fonts/Exo2Regular.woff2') format('woff2'),
         url('/fonts/Exo2Regular.woff') format('woff'),
         url('/fonts/Exo2Regular.ttf') format('truetype'),
         url('/fonts/Exo2Regular.svg#Exo2Regular') format('svg');
}
/*----------------- Страница входа -----------------*/
body{
    position: static;
}

html{
    width: 100%;
    height: 100%;
    background: url('/img/login_bg.jpg') center center;
    background-size: cover;
    position: relative;
}

.login-logo{
    width: 182px;
    height: 81px;
    background: url('/img/logo_login.png');
    margin: 0 auto;
}

.text-login{
    color: #343434;
    font-size: 29px;
    font-family: 'Exo2Regular', sans-serif;
    margin-top: 20px;
    text-align: center;
}

.form-block{
    width: 458px;
    min-height: 249px;
    border: 1px solid #c1c1be;
    -webkit-border-radius: 7px;
    -moz-border-radius: 7px;
    border-radius: 7px;
    background-color: #fdfdfd;
    margin-top: 35px;
    padding-bottom: 29px;
}

.login-block{
    width: 460px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -230px;
}

.login-input{
    background: #e5e5e5;
    height: 61px;
    width: 333px;
    border: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-family: 'Exo2Regular', sans-serif;
    color: #343434;
    font-size: 17px;
    padding: 0 35px;
    margin-top: 29px;
    margin-left: 27px;
    box-shadow: inset 7px 7px 7px #c5c5c5;
    outline: none;
}

.password-input{
    background: #e5e5e5;
    height: 61px;
    width: 333px;
    border: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-family: 'Exo2Regular', sans-serif;
    color: #343434;
    font-size: 17px;
    padding: 0 35px;
    margin-top: 19px;
    margin-left: 27px;
    box-shadow: inset 7px 7px 7px #c5c5c5;
    outline: none;
}

.login-error{
    background: #FCABAB;
    height: 61px;
    width: 333px;
    border: 1px solid #FF8484;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-family: 'Exo2Regular', sans-serif;
    color: #A32020;
    font-size: 17px;
    padding: 0 35px;
    margin-top: 19px;
    margin-left: 27px;
    text-align: center;
    line-height: 61px;
}

.login-input::-webkit-input-placeholder, .password-input::-webkit-input-placeholder {color:#343434;}
.login-input::-moz-placeholder, .password-input::-moz-placeholder          {color:#343434;}/* Firefox 19+ */
.login-input:-moz-placeholder, .password-input:-moz-placeholder           {color:#343434;}/* Firefox 18- */
.login-input:-ms-input-placeholder, .password-input:-ms-input-placeholder      {color:#343434;}

.submit-form{
    height: 61px;
    padding-bottom: 9px;
    background: url('/img/login_buttom.png');
    border: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    font-weight: bold;
    font-size: 19px;
    color: #3d4f0f;
    font-family: 'Exo2Regular', sans-serif;
    text-transform: uppercase;
    margin-left: 27px;
    margin-top: 19px;
    width: 403px;
    display: block;
    line-height: 61px;
    cursor: pointer;
    outline: none;
}

.login-none-register{
    border: none;
    font-weight: bold;
    font-size: 16px;
    color: #3d4f0f;
    font-family: 'Exo2Regular', sans-serif;
    text-transform: uppercase;
    margin-top: 19px;
    display: block;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.link-addon a{
    font-family: 'Exo2Regular', sans-serif;
    font-size: 18px;
    text-decoration: none;
}

.link-addon{
    margin-top: 10px;
}

.registration-url{
    float: left;
    background-color: #A2DB20;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 9px 15px;
    width: 140px;
    text-align: center;
    color: #3F540B;
    border: 1px solid #92C71C;
    margin-left: 53px;
}

.restore-url{
    float: right;
    background-color: #C33232;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 9px 15px;
    width: 140px;
    text-align: center;
    color: #D4CDCD;
    border: 1px solid #AF0D0D;
    margin-right: 53px;
}