@import url(https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap);.button,.input,body {
    font-size: 16px;
    font-family: Roboto,sans-serif
}

.button:hover,body {
    background: #e2dffe
}

.button,.form__input,.input,body {
    font-family: Roboto,sans-serif
}

.form__input:focus,.input:focus {
    outline: 0
}

.button,.form-block__change,.login-block__forgot {
    width: 100%;
    cursor: pointer
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-weight: 400;
    color: #fff
}

h1,h2,h3,h4,h5,h6,p {
    cursor: default!important
}

.input {
    display: block;
    width: 100%;
    line-height: 19px;
    background: #181818;
    color: #fff;
    border: 1px solid #2f2f2f;
    border-radius: 6px;
    padding: 14px
}

.button {
    display: block;
    font-weight: 500;
    background: #ab9ff2;
    color: #222;
    border: none;
    border-radius: 6px;
    padding: 14px 0
}

.button:disabled {
    opacity: .5;
    pointer-events: none
}

.container {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center
}

.container__inner {
    min-width: 400px;
    max-width: 400px;
    min-height: 650px;
    background: #222;
    /* border-radius: 16px; */
    box-shadow: rgba(0,0,0,.4) 0 10px 20px
}

.content__block {
    padding: 25px 20px
}

.header__block {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    border-bottom: 1px solid #323232;
    padding-bottom: 20px
}

.login-block__logo {
    max-height: 180px
}

.form-block__heading,.login-block__heading,.update-block__heading {
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    letter-spacing: .5px;
    margin-bottom: 20px
}

.login-block__input {
    margin-bottom: 20px
}

.login-block__forgot {
    display: block;
    text-align: center;
    color: #666
}

.login-block__forgot:hover {
    color: #999
}

.form-block__button,.login-block__button {
    margin-top: 25px
}

.form__block,.update__block {
    padding: 25px 0
}

.form-block__text,.update-block__text {
    text-align: center;
    color: #999;
    line-height: 22px;
    margin-bottom: 25px
}

.form-block__group {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    column-gap: 7px;
    row-gap: 10px
}

.form-group__inner {
    display: flex;
    flex-direction: row;
    gap: 7px;
    align-items: center;
    background: #181818;
    border: 1px solid #2f2f2f;
    border-radius: 5px;
    box-shadow: rgba(0,0,0,.25) 0 0 4px 0;
    padding: 0 7px;
    transition: .2s
}

.form-group__inner.active {
    border-color: #ab9ff2
}

.form-group__inner span {
    font-size: 13px;
    color: #999
}

.form__input {
    width: 100%;
    background: 0 0;
    color: #fff;
    font-size: 14px;
    border: none;
    padding: 12px 0
}

.form-block__error {
    display: none;
    text-align: center;
    font-size: 14px;
    color: #eb3742;
    margin: 15px 0
}

.form-block__change {
    display: block;
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
    color: #999;
    transition: .2s
}

.form-block__change:hover {
    color: #fff
}

@media (max-height: 600px) {
    body {
        background:#222
    }
}
