/* Layout */
.register-buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    width: 320px;
    margin: 20px auto 0;
}

legend{
    font-size: 23px;
}

.register-buttons .register-button {
    display: inline-block;
    padding: 7px 15px;
    font-size: 14px !important;
    border-radius: 10px;
    width: 100%;
    text-align: center;
    font-weight: 500;
    transition: 0.3s all ease;
}

/* Inkoper - default */
a.register-button.inkoper {
    background: transparent;
    border: 2px solid #f7911e;
    color: #f7911e;
}

/* Inkoper - hover */
a.register-button.inkoper:hover {
    background: #f7911e;
    color: white;
}

/* Inkoper - active (important vereist) */
a.register-button.inkoper.active {
    background: #f7911e !important;
    border-color: #f7911e !important;
    color: white !important;
}

a.register-button.inkoper.active:hover {
    background: transparent !important;
    color: #f7911e !important;
}

/* Leverancier - default */
a.register-button.leverancier {
    background: transparent;
    border: 2px solid #0C2F4F;
    color: #0C2F4F;
    font-weight: 500;
    transition: 0.3s all ease;
}

/* Leverancier - hover */
a.register-button.leverancier:hover {
    background: #0C2F4F;
    color: white;
}

/* Leverancier - active */
a.register-button.leverancier.active {
    background: #0C2F4F;
    border-color: #0C2F4F;
    color: white;
}

a.register-button.leverancier.active:hover {
    background: transparent;
    color: #0C2F4F;
}

/* Overig */
.create_account {
    margin-top: 20px !important;
}
