/* - start - some more normalization */
html {
    box-sizing: border-box;
}

*, *::before, *::after {
    box-sizing: inherit;
}

/* - end - */

.auth-page {
    width: 100%;
    height: 100%;
    min-height: 100vh;
    background: #e36729;

    display: flex;
    flex-flow: column;
    align-items: center;
    justify-content: center;
}

.auth-page__logo {
    background: url(images/logo-big.svg);
    background-repeat: no-repeat;
    background-position: center;
    width: 232px;
    height: 18%;
    top: 0;
    position: absolute;
    display: block;
    left: 50%;
    transform: translateX(-50%);
}

.auth-page__message {
    background: #ffffff6b;
    padding: 0 20px;
    width: 284px;
    transform: translate(0, -5px);
    border-radius: 8px;
    text-shadow: 1px 1px #ffffff45;
    z-index: 1;
    font-family: 'Roboto';
}

.auth {
    font-family: 'Roboto';
    background: #ffffff;
    box-shadow: 0px 0px 2px rgba(0, 0, 0, 0.04),
        0px 4px 4px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    width: 284px;
    z-index: 1;
    user-select: none;
}

.auth__title {
    margin: 21px 0;

    font-family: Roboto;
    font-style: normal;
    font-weight: bold;
    font-size: 20px;
    line-height: 24px;

    text-align: center;
    letter-spacing: 0.38px;

    color: #333333;
}

.auth__input {
    display: block;
    height: 36px;
    width: 234px;
    margin: 14px 25px;
    background: #f4f4f4;
    border: none;
    outline: none;
    border-radius: 4px;
    padding-left: 11px;

    font-family: 'Roboto';
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: 0.2px;

    color: #616161;
}
.auth__input::placeholder {
    font-family: 'Roboto';
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 35px;
    letter-spacing: 0.2px;

    color: #959595;
}

.auth__input:focus {
    border: none;
    outline: none;
    color: #333333;
}

.auth__remember-block {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 14px 25px;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 13px;
    line-height: 15px;
    color: #8c8c8c;
}

.auth__remember-hidden {
    display: none;
}

.auth__remember-square {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin: 0;
    outline: none;
    background: #F6F6F6;
    border: 1px solid #E1E1E1;
    box-sizing: border-box;
    border-radius: 2px;
    cursor: pointer;
}

.auth__remember-label {
    padding-left: 7px;
    cursor: pointer;
}

.auth__remember-hidden:checked+.auth__remember-square {
    color: #e36729;
    border: none;
}
.auth__remember-hidden:checked+.auth__remember-square:before {
    content: "\2713";
    font-family: arial;
    font-weight: bold;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.auth__btns {
    display: flex;
    flex-flow: row;
    align-items: center;
    justify-content: center;
}

.auth__submit {
    position: relative;
    width: auto;
    height: 36px;
    background: #e3682b;
    border: none;
    outline: none;
    border-radius: 4px;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    color: #ffffff;
    padding: 10px 16px;
    margin: 20px 10px;
    cursor: pointer;
    border: 1px solid #e3682b;
    transition: color .15s, background .15s;
}

.auth__submit:hover {
    background: white;
    color: #e3682b;
}

.auth__submit:active {
    text-decoration: underline;
}

.auth__restore {
    text-decoration: none;
    display: inline-block;
    position: relative;
    width: auto;
    height: 36px;
    outline: none;
    border-radius: 4px;
    font-family: Roboto;
    font-style: normal;
    font-weight: normal;
    font-size: 14px;
    line-height: 16px;
    color: #E36729;
    padding: 10px 0;
    margin: 20px 10px;
}

.auth__restore:hover {
    text-decoration: underline;
}
