.login-form__wrapper {
    display: flex;
    height: 90vh;
    align-items: center;
    justify-content: center;
}

.login-form {
    width: 76%;
    max-width: 300px;
}

.login-form__title {
    text-transform: uppercase;
}

.login-form__label {
    display: block;
    position: relative;
    height: 40px;
    line-height: 40px;
}

.login-form__group {
    position: absolute;
    top: 50%;
    left: 12px;
    font-size: 14px;
    font-weight: bold;
    transform: translateY(-50%);
}

.login-form__input {
    display: block;
    width: 100%;
    height: 100%;
    padding: 0 12px 0 52px;
    box-sizing: border-box;
}

.login-form__submit {
    width: 100%;
    height: 40px;
    border: none;
    background: #ff5a5f;
    color: #fff;
    font-weight: bold;
    cursor: pointer;
    outline: none;
}