.auth-view {
    display: block;
    min-height: calc(100vh - 96px);
    font-family: Roboto, Arial, sans-serif;
}

body.is-locked,
body.is-loading {
    background: #fff;
}

.auth-view .panel {
    position: relative;
    box-sizing: border-box;
    display: block;
    width: 400px;
    max-width: calc(100vw - 32px);
    height: 395px;
    overflow: hidden;
    margin: 30px auto 0;
    padding: 50px;
    gap: 0;
    border: 0;
    border-radius: 10px;
    background-color: #f2f2f2;
    box-shadow: 0 3px 8px 0 rgba(199, 199, 199, 1);
}

.auth-view .panel * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Roboto, Arial, sans-serif;
}

.auth-view .panel.error {
    border-color: red;
}

.auth-view .logo-block {
    display: flex;
    width: 400px;
    height: 80px;
    align-items: center;
    justify-content: center;
    margin-top: -50px;
    margin-left: -50px;
    background: rgba(51, 51, 51, 1);
}

.auth-view .logo-block img {
    display: block;
    width: 300px;
    max-width: calc(100% - 48px);
    height: 35px;
}

.auth-view .auth-name {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 30px 0;
    color: rgba(51, 51, 51, .8);
    font-family: Roboto, Arial, sans-serif;
    font-size: 24px;
    font-weight: 500;
    letter-spacing: 0;
}

.auth-view .form-group input {
    display: block;
    width: 100%;
    height: 50px;
    margin-bottom: 2px;
    overflow: hidden;
    padding-left: 10px;
    border: 0;
    border-radius: 5px;
    background: #fff;
    box-shadow: none;
    color: #000;
    font-size: 15px;
    transition: background-color .2s, border-color .2s;
}

.auth-view .form-group input:focus {
    border-color: #99cc33;
    outline: none;
}

.auth-view .form-group input:first-child {
    margin-bottom: 15px;
}

.auth-view .panel button {
    display: block;
    width: 122px;
    height: 44px;
    margin: 33px auto 0;
    border: none;
    border-radius: 5px;
    background: rgba(88, 118, 64, 1);
    color: white;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    transition: background-color .1s, border-bottom-color .1s, transform .1s;
}

.auth-view .panel button:hover {
    background: rgb(108, 155, 66);
}

.auth-view .validation-error {
    position: absolute;
    bottom: 83px;
    left: 124px;
    color: #e70000;
    font-family: Roboto, Arial, sans-serif;
    font-weight: 500;
    opacity: 0;
    transition: opacity .2s;
}

.auth-view .validation-error.is-visible {
    opacity: 1;
}

@media only screen and (max-width: 550px) {
    .auth-view .panel {
        transform: scale(.8);
        transform-origin: top center;
    }
}
