body {
    /* background-color: var(--bg-color-blue); */
    min-height: 50%
}

.register {
    padding-top: 60px;
    padding-bottom: 60x;
    color: var(--font-black);
    font-size: .8125rem
}

@media(min-width:1200px) {
    .register {
        font-size: 13px
    }
}

.register__forgotpassword {
    color: var(--font-gray);
    font-size: .75rem
}

.register__container {
    padding: 20px;
    border-radius: 6px
}

.register__heading {
    font-weight: 700;
    font-size: 1rem;
    display: flex;
    align-items: end;
    margin-bottom: 15px
}

.register__user-icon {
    margin-right: 10px
}

form label {
    margin-bottom: 0;
    font-size: .75rem
}

form .form__input__row {
    margin-top: 15px
}

.required {
    font-weight: 700
}

.register form input {
    border: 1px solid var(--border-color);
    padding: 4px 15px;
    outline: 0;
    width: 100%;
    border-radius: 6px
}

.register form .register__btn--register {
    background-color: var(--main-color);
    padding: 5px 40px;
    border: 0;
    border-radius: 5px;
    color: white;
    margin: 10px 0
}

.register form .register__btn--register:hover {
    opacity: .8;
    color: white
}

@media only screen and (min-width:576px) {
    .register__password {
        margin-right: 15px
    }
}

.password__eye {
    position: absolute;
    right: 5px;
    top: 0;
    height: 100%;
    width: 30px;
    padding: 0 5px;
    fill: #717171
}

.password__eye:hover {
    cursor: pointer
}

.password__input {
    padding-right: 35px !important
}