html,
body {
    margin: 0;
    padding: 0;
    height: 100%;
}

body.signin-page {
    background: #2e4762;
    font-family: Arial, sans-serif;
}

.signin-wrapper {
    width: 100%;
    min-height: 100vh;
    position: relative;
}

/* карточка */
.signin-box {
    width: 360px;
    min-height: 302px;
    background: #f3f3f3;
    border: 1px solid #d2d2d2;
    position: absolute;
    top: 118px;
    left: 50%;
    margin-left: -180px;
    padding: 18px 22px 16px 22px;
    box-sizing: border-box;
}

/* бренд */
.signin-brand {
    display: flex;

    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-bottom: 24px;
    position: relative;
    left: -1px;
}

.signin-logo img {
    height: 30px;
}

/* название */
.signin-title {
    font-size: 18px;
    color: #748aa4;
    font-weight: normal;
    letter-spacing: 0;
}

/* группы */
.signin-form .form-group {
    margin-bottom: 10px;
}

/* лейблы */
.signin-form label {
    font-size: 12px;
    font-weight: 700;
    color: #6f8195;
    margin-bottom: 5px;
}

/* поля */
.signin-form input[type="text"],
.signin-form input[type="password"],
.signin-form .form-control {
    width: 100%;
    height: 32px;
    border: 1px solid #cfcfcf;
    background: #f3f3f3;
    padding: 0 6px;
    font-size: 13px;
    box-sizing: border-box;
    border-radius: 0;
    box-shadow: none;
}

.signin-form input:focus {
    border-color: #c1ccd8;
}

/* чекбокс */
.signin-checkbox-wrap {
    margin-top: 0;
    margin-bottom: 13px;
}

.signin-checkbox-wrap label {
    font-size: 12px;
    font-weight: 700;
    color: #6f8195;
    position: relative;
    top: -1px;
}

.signin-checkbox-wrap input {
    margin-right: 5px;
    position: relative;
    top: -1px;
}

/* действия */
.signin-actions {
    position: relative;
    height: 32px;
}

/* ссылка */
.signin-recovery {
    position: absolute;
    left: 20px;
    top: 7px;
    font-size: 14px;
    color: #337ab7;
    text-decoration: none;
}

.signin-recovery:hover {
    text-decoration: underline;
}

/* кнопка */
.signin-submit {
    position: absolute;
    right: 20px;
    top: 0;
    width: 70px;
    height: 32px;
    background: #337ab7;
    border: none;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    border-radius: 2px;
    padding: 0;
    line-height: 32px;
}

.signin-form .help-block,
.signin-form .invalid-feedback {
    font-size: 12px;
    color: #a94442;
    margin-top: 3px;
    margin-bottom: 6px;
    margin-left: 5px;
    line-height: 1.2;
}

.signin-form .form-group {
    margin-bottom: 10px;
}

.signin-form .form-group {
    margin-bottom: 10px;
}

.signin-submit:hover {
    background: #2d6ea6;
}