a[highlight] {
    font-weight: bold;
    text-decoration: underline;
}
/* Image Logo */
.image-logo {
    max-width: 100%;
    height: auto;
    margin-bottom: 5vh;
}

/* SubscriptionExpiredView */
.subscription-expired-view {
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.subscription-expired-view h2 {
    text-align: center;
}
.subscription-expired-view-button-content{
    text-align: center;
    margin-top: 5vh;
}

/* RegistrationLayout */
.registration-layout {
    align-items: center;
    justify-content: center;
}
.registration-layout h1 {
    text-align: center;
}
.registration-flex-layout {
    width: 100%;
    height: 100%;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
}
.registration-horizontal-layout{
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

/* MobileRegistrationOffLayout */
.registration-off-layout {
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.registration-off-layout h2 {
    text-align: center;
}
.registration-off-layout-button-content{
    text-align: center;
    margin-top: 5vh;
}

/*EXCEPTION */
.exception-dialog {
    justify-content: center;
    align-items: center;
    text-align: center;
    width: auto;
    height: auto;
}


/* MOBILE */
@media (max-width: 600px) {
    .registration-horizontal-layout {
        flex-direction: column;
    }
}