body, html {
    width: 100%;
    height: 100%;
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 14px;
    background-color: #F8F9FD;
}

* {
    box-sizing: border-box;
}

.authBlock {
    display: flex;
    justify-content: center;
    align-content: center;
    align-items: center;
    height: 100%;
}
.authBlock__form {}
.authForm {
    width: 300px;
    padding: 30px;
    background-color: #FFFFFF;
    border-radius: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0, 0.1);
    text-align: left;
}
.authForm__group {}
.authForm__group:not(:last-child) {
    margin-bottom: 12px;
}
.authForm__label {
    display: block;
    margin-bottom: 4px;

    color: #828398;
    font-weight: 500;
}
.authForm__control {
    width: 100%;
    height: 34px;
    padding: 0 12px;
    border: 1px solid #e3e4e9;
    border-radius: 6px;
}
.authForm__checkbox {
    margin: 0 4px 0 0;
    vertical-align: -1px;
}
.authForm__checkbox + .authForm__label {
    display: inline-block;
    margin-bottom: 0;
}
.authForm__submit {
    display: block;
    width: 100%;
    height: 34px;
    border: 0 none;
    padding: 0 12px;
    margin: 10px auto 0;
    background-color: #c5b2ef;
    border-radius: 6px;

    color: #5a2f99;
    font-weight: 600;
    transition: background-color 0.2s ease-in;

    cursor: pointer;
}
.authForm__submit:hover {
    background-color: #d0c1f2;
    transition: background-color 0.2s ease-in;
}
.authForm__group_errors {}
.authForm__group_errors p {
    border: 1px solid #FFCCCC;
    background: #FFEFEF;
    padding: 3px;
    font-weight: bold;
    font-size: 13px;
}