.artist-role  #RegisterForm {
    display: none;
}

.artist-role #RegisterFormRoleArtist {
    display: block;
}

.supplier-role #RegisterForm {
    display: block;
}

.supplier-role #RegisterFormRoleArtist {
    display: none;
}

.authentication-image img:not(.active) {
    display: none;
}

.authentication-wrapper.authentication-by-role {
    grid-gap: 80px;
}

.authentication-by-role .btn-primary {
    border-radius: 24px;
}

.authentication-image img {
    max-width: 100%;
    max-height: 440px;
}

.register-by-role {
    width: 100%;
    border: 1px solid #696cff;
    padding: 4px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    grid-gap: 8px;
    margin-bottom: 16px;
}

.register-by-role button {
    width: calc((100% - 8px) / 2);
    border: 0;
    background: transparent;
    padding: 8px 16px;
    border-radius: 24px;
}


.register-by-role button.active {
    background: #696cff;
    color: #fff;
}

.register-by-role button:not(.active):hover {
    background-color: #f5f5f5;
}

.authentication-by-role > div {
    width: calc((100% - 80px) / 2);
}

.authentication-by-role > div.authentication-inner {
    display: flex;
    justify-content: center;
}

.authentication-by-role .authentication-inner {
    margin: auto;
}

.authentication-head .app-brand {
    margin-bottom: 30px;
}

.authentication-head {
    margin-bottom: 80px;
}

.authentication-head h4 {
    font-size: 1.5rem;
}

.authentication-head p {
    font-size: 1rem;
}

.authentication-by-role {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}

@media(min-width: 991px) {
    .authentication-wrapper.authentication-by-role .authentication-inner:before,
    .authentication-wrapper.authentication-by-role .authentication-inner:after {
        display: none;
    }
}

@media(max-width: 990px) {
    .authentication-image {
        display: none;
    }
    
    .authentication-by-role > div {
        width: 100%;
    }
    
    .authentication-wrapper.authentication-by-role .authentication-inner {
        margin: 0 auto;
    }

    .authentication-wrapper.authentication-by-role {
        flex-direction: column;
    }
    
    .authentication-head {
        margin-bottom: 0;
    }
    
    .authentication-wrapper.authentication-by-role {
        grid-gap: 16px;
    }
    
    .authentication-by-role .authentication-image-wrapper {
        max-width: 480px;
        margin: 0 auto;
        width: 90%;
    }
}