body {
    margin: 0;
    padding: 0;
    font-family: Tahoma, sans-serif;
    height: 100%;
}
html {
    height: 100%;
}
input {
    color: #3B4041;
    padding: 0;
    
}

::-webkit-input-placeholder { /* Chrome */
  color: #ccc;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #ccc;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #ссс;
  opacity: 1;
}
:-moz-placeholder { /* Firefox 4 - 18 */
  color: #ссс;
  opacity: 1;
}
input[type=checkbox] {
    display: none;
}
.form__label-gray {
    color: #9B9B9B;
    font-size: 14px;
}
input[type=checkbox] + label:before {
    content: "";
    display: inline-block;
    width: 18px;
    height: 18px;
    background: white;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 1px solid #D6DBE7;
    border-radius: 3px;
    margin-right: 8px;
    margin-bottom: -4px;
}
.form__checkbox label:before {
    border-radius: 3px;
}
input[type=checkbox] + label:after {
    opacity: 0;
    content: '';
    position: absolute;
    width: 9px;
    height: 5px;
    background: transparent;
    top: 3px;
    left: 3px;
    border: 3px solid #333;
    border-top: none;
    border-right: none;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
input[type=checkbox]:checked + label:after {
    opacity: 0.2;
}
a {
    text-decoration: none;
    color: #3A529B;
}
a:hover {
    text-decoration: underline;
}
.body-background {
    position: absolute;
    width: 100%;
    background-color: #F6F7FA;
    height: 50%;
    z-index: -2;
}
.wrapper {
    overflow: hidden;
    min-height: 100%;
    position: relative;
}
.form-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 20px;
    box-sizing: border-box;
}
.logo {
    position: absolute;
    top: calc(50% - 250px - 60px); /* 50% - половина высоты формы - 60px */
    height: 54px;
    width: 100%;
    max-width: 500px;
    background: no-repeat center center url('../img/vimis.png');
    background-size: contain;
    left: 50%;
    transform: translateX(-50%);
}
.form {
    width: 500px;
    padding: 40px 0;
    box-shadow: 0 0 7px 0 rgba(0,0,0,0.22);
    background-color: #fff;
    border-radius: 8px;
    z-index: 1;
    position: relative;
    margin-top: 80px;
}
.form.without-back {
    background: none;
    box-shadow: none;
    width: 600px;
    text-align: center;
    font-size: 16px;
    color: #6C6C6B;
}
.form.error {
    font-size: 16px;
    color: #DE7256;
    min-height: 415px;
}
.form__error-icon {
    height: 60px;
    width: 60px;
    margin: 100px auto 48px;
}
.form__error-message {
    font-size: 14px;
    color: #D97C6A;
    height: 28px;
    padding-top: 5px;
    padding-left: 10px;
    padding-bottom: 10px;
}
.form__input {
    background: #FFFFFF;
    border: 0;
    border: 1px solid #DCDEE1;
    border-radius: 4px;
    height: 40px;
    width: calc(100% - 33px); /* уменьшаем на ширину иконки */
    font-size: 14px;
    padding: 0;
}
.form__input.short {
    width: 54%;
    margin-left: 32px;
}
.form__input-with-icon {
    padding-left: 33px;
}
.form__qr-code {
    height: 120px;
    width: 120px;
    background: #D7DDEA;
    float: left;
}
.form__qr-code-info {
    width: 200px;
    float: right;
    font-size: 11px;
    color: #4A4A4A;
    margin-left: 38px;
    margin-bottom: 28px;
}
.form__submit {
    display: block;
    margin: 0 auto;
    width: 90px;
    background-color: #6b74e3;
    height: 40px;
    border-radius: 4px;
    border: none;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}
.form__submit:hover {
    background-color: #5860с4 !important;
}
.form__message {
    margin-bottom: 26px;
    color: #6C6C6B;
}
.form__header {
    margin: 0 auto;
    font-size: 35px;
    color: #4a4a4a;
    letter-spacing: 0;
    text-align: center;
    padding-top: 40px;
    padding-bottom: 22px;
}
.form__header.big {
    font-size: 28px;
    width: 300px;
    padding-bottom: 48px;
}
.form__form {
    margin: 0 71px 0 71px;
}
.form__group {
    position: relative;
    padding-bottom: 20px;
}
.form__label {
    font-size: 13px;
    color: #4A4A4A;
}
.form__icon {
    position: absolute;
    width: 14px;
    height: 18px;
    top: 13px;
    left: 10px;
}
.form__helper-wrapper {
    visibility: hidden;
    opacity: 0;
}
.form__helper {
    position: absolute;
    width: 320px;
    height: 60px;
    left: 390px;
    top: -6.5px;
    background: #FFFFFF;
    border: 1px solid #EEF1F8;
    box-shadow: 0 0 7px 0 rgba(0,0,0,0.17);
    border-radius: 3px;
}
.form__helper::after, .form__helper::before {
    content: '';
    position: absolute;
    background: #fff;
    left: -10px;
    bottom: 20px;
    width: 20px;
    height: 20px;
    box-shadow: 0 0 7px 0 rgba(0,0,0,0.17);
    z-index: -1;
    transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
}
.form__helper::before {
    z-index: 1;
    box-shadow: none;
}
.form__group input:focus ~ .form__helper-wrapper {
   /* visibility: visible;
    opacity: 1;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
    -webkit-transition-delay: 2s;
    transition-delay: 2s;*/
}
.form__header-p {
    font-size: 12px;
    color: #9B9B9B;
    letter-spacing: 0;
    padding-left: 22px;
    height: 60px;
    vertical-align: middle;
    display: table-cell;
}
.bottom-link {
    /*padding-left: 21.5%;*/
}
.form__links {
    font-size: 13px;
    line-height: 24px;
    padding-top: 0px;
    padding-bottom: 35px;
}
.form__links-left {
    padding-left: 45%;
}
.form__input:focus {
    border-color: #6B74E3;
    outline: 0;
    height: 40px;
}
.form__input.error {
    outline: 0;
    border-color: #FBBAAE;
}
.form__input:focus.error {
    outline: 0;
    border-color: #FBBAAE;
}
.mobile {
    display: none;
}
.refresh {
    text-align: end;
    margin: 0 71px;
    position: relative;
    height: 30px;
}
.refresh__btn {
    font-size: 13px;
    color: #9B9B9B;
    cursor: pointer;
    float: right;
}
.refresh__btn:hover {
    color: #3377FF;
}
.refresh__icon {
    position: absolute;
    height: 10px;
    width: 10px;
    right: 65px;
    top: 2px;
}
.ie_label {
    display: block;
}


.bottom-block {
    width: 500px;
    margin: 10% auto 0;
}
.bottom-block__link {
    font-size: 13px;
    color: #3A529B;
}
.bottom-block__link-right {
    float: right;
}
.bottom-block__phone {
    font-size: 16px;
    color: #6C6C6B;
    margin-bottom: 5px;
}
.bottom-wrapper {
    margin-bottom: 1px;
    position: absolute;
    bottom: 30px;
    width: 100%;
}
.cert-button {
    text-decoration: none;
    padding-bottom: 35px;
    display: block;
}


table {
    border-collapse: collapse;
}
th {
    height: 50%;
    font-size: 14px;
    color: #9B9B9B;
    padding-bottom: 23px;
}
th:first-child {
    width: 180px;
}
tr {
    text-align: left;
}
td {
    padding-bottom: 10px;
    padding-top: 10px;
}
tr, td {
    font-size: 14px;
    color: #3A529B;
}
tr:hover td {
    color:  #44A9ED;
    cursor: pointer;
}
@media (max-width: 500px) {
    .body-background {
        display: none;
    }
    .form {
        width: 100%;
        box-shadow: none;
        border-radius: 4px;
    }
    .form__header {
        font-size: 25px;
    }
    .form__form {
        margin: 0 28px;
    }
    .form__links {
        text-align: center;
    }
    .form__links-left {
        padding-left: 0;
    }
    .form__helper {
        display: none;
    }
    .bottom_info {
        width: 100%;
    }
    .form__group.mobile-flex, .mobile-flex {
        display: -ms-flexbox;
        display: -webkit-box;
        display: flex;
        -ms-flex-direction: column;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        flex-direction: column;
        -ms-flex-align: center;
        -webkit-box-align: center;
        align-items: center;
    }
    .form__qr-code-info {
        margin: 0;
        margin-top: 10px;
    }
    .form__input.short {
        margin: 0;
        margin-top: 10px;
        width: 100%;
    }
    .mobile {
        display: block;
    }
    .form.without-back {
        width: 100%;
    }

    .bottom-block {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    .bottom-block__link-right {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .bottom-block__link {
        margin-bottom: 7px;
    }
}