/* 
    Created on : 03.03.2026, 21:24:22
    Author     : Carsten Tebben
*/

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    margin: 0;
    padding: 0;
}


body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    font-size: clamp(1rem, 4.5vw, 1.5rem);
    line-height: 1.5;
    color: #333;
    background-color: #1b4d89;
}


main {
    background-color: #f2f2f2;
}


#holder {
    padding-top: 3.5rem;
    max-width: 100vw;
    margin: 0 auto 0 auto;
    transition: 0.3s ease-in-out;
    height: 100dvh;
}

h1, h2, h3 {
    font-family: Georgia, 'Times New Roman', serif;
    font-weight: bold;
}

h1, h2 {
    font-size: clamp(1rem, 5.3vw, 1.8rem);
}

/* Maintenance */

.maintenance_div {
    font-family: sans-serif;
    text-align: center;
    padding: 80px;
}
.maintenance_h1 {
    font-size: 32px;
}
.maintenance_p {
    font-size: 18px;
    color: #555;
}

/* Header */

header {
    background-color: #f2f2f2;
    display: flex;
    justify-content: flex-end;
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 3.5rem;
    text-align: center;
    z-index: 1000;
    transition: 0.3s ease-in-out;
    border-bottom: 0.075rem solid #999999;
}

.margin_padding_00{
    padding: 0 !important;
    margin: 0 !important;
}

/* Für ALLE button im aktiven Zustand */
.ui-button:active,
.ui-button.ui-state-active,
.ui-button:focus,
.ui-button:focus-visible {
    box-shadow: none !important;
    border: none !important;
}

.btn_login_out{
    height: 100%;
    width: 100%;
    display: block;
}

.btn_login_out_icon{
    font-size: 2rem !important;
    height: 3.5rem;
    padding-top: 0.75rem;
    color: black;
}

@media (max-width: 768px) {
    /*mobile*/

    /*Burger-Menu*/
    span.ui-menuitem-icon.ui-icon.pi.pi-fw{
        width: 44vw !important;
    }

    span.ui-menuitem-icon.ui-icon.flag_germany, span.ui-menuitem-icon.ui-icon.flag_united_kingdom{
        width: 44.5vw !important;
        margin-left: 1.5rem;
    }
}

@media (min-width: 769px) {
    /*desktop*/

    /*Burger-Menu*/
    span.ui-menuitem-icon.ui-icon.pi.pi-fw{
        width: 46.5vw !important;
    }

    span.ui-menuitem-icon.ui-icon.flag_germany, span.ui-menuitem-icon.ui-icon.flag_united_kingdom{
        width: 44.5vw !important;
        margin-left: 2.5rem;
    }
}

/* Haupt-Menüleiste */
.custom-menubar {
    position: relative;
    width: 2rem;          /* volle Breite */
    height: 3.5rem;
    left: 0;               /* Start am linken Rand */
    margin: 0;
    padding-top: 0.5rem;
    margin-right: 0.5rem;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    background: transparent;
}

/* Hamburger Icon */
.menu-trigger {
    cursor: pointer;
}

.menu-trigger i.pi.pi-bars {
    font-size: 2rem; /* größer */
}

/* Dropdown Panel */
.menu-panel {
    position: fixed;       /* statt absolute */
    top: 3.5rem;             /* Höhe der Menüleiste */
    left: 0;               /* Start am linken Rand */
    width: 100vw;          /* volle Breite */
    background: white;
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

@media (hover: hover) and (pointer: fine) {
    .custom-menubar:hover .menu-panel {
        display: flex;
    }
}

.menu-panel {
    display: none;
}

.menu-panel.open {
    display: flex;
}


/* Menüeinträge */
.menu-item {
    width: 100%;
    text-align: center;
    padding: 12px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
    margin: -0.50rem;
}

.menu-item:hover {
    background: #f0f0f0;
}

header > .logo {
    flex-grow: 0;
    flex-shrink: 0;
    flex-basis: 6.75rem;
    padding-left: 1rem;
    margin-right: auto;
    padding-top: 0.125rem;
}

header > .logo img {
    height: 3.2rem;
    width: 100%;
}

header .menubar_bars .mi_hamburger .ui-menuitem-icon {
    font-size: 2rem!important;
    color: #000!important;
}

header .menubar_bars .mi_hamburger .ui-icon-triangle-1-s:last-child {
    display: none !important;
}

header .menubar_bars .ui-menu-child {
    width: 100vw !important;
    margin: 0 !important;
    padding: 0 !important;
    text-align: left !important;
}

header .button_login {
    background: #f2f2f2;
    margin-right: 1rem;
    width: 3.5rem;
    height: 3.2rem;
    border-radius: 0.5rem;
}

header .button_login .ui-button {
    background-color: #f2f2f2 !important;
    border-color: #f2f2f2 !important;
    height: 100% !important;
    width: 100% !important;
}

header .button_login .ui-button-text {
    background-color: #f2f2f2 !important;
}

/* Sprachmenü Container */
.lang-menubar {
    display: flex;
    width: 4.5rem;
}

/* Trigger (Flagge) */
.lang-trigger {
    cursor: pointer;
}

/* Flagge */
.lang-flag {
    width: 100% !important;
    height: 100% !important;
    cursor: pointer !important;
    padding-top: 0.85rem !important;
    padding-bottom: 0.75rem !important;
    padding-right: 1.5rem !important;
}

/* Panel wie Bars-Menü */
.lang-menu {
    position: fixed;
    top: 3.5rem;
    left: 0;
    width: 100vw;
    background: white;
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Hover öffnet Menü */
.lang-menubar:hover .lang-menu {
    display: flex;
}

/* Menüeinträge */
.lang-item {
    width: 100%;
    text-align: center;
    padding: 12px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    color: #333;
    text-decoration: none;
    font-size: 1.1rem;
}

.lang-item:hover {
    background: #f0f0f0;
}

/* Separator */
.lang-separator {
    width: 100%;
    height: 1px;
    background: var(--surface-border, #dee2e6);
    margin: -0.5rem;
}

/* Flaggen im Menü */
.lang-menu-flag {
    width: 20px !important;
    height: 14px !important;
    object-fit: cover;
}

/* Container im Dialog */
.dialog_container_language {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    padding: 1rem 0;
}

/* Panel des SelectOneMenu soll exakt so hoch sein wie der Dialog-Inhalt */
.ui-selectonemenu-panel.lang-panel-fullheight {
    height: 300px !important;       /* Dialoghöhe 360px minus Header/Padding */
    max-height: 300px !important;
    overflow-y: auto !important;
}

.dialog_request_new_lang{
    width: 20rem !important;
}

/* Nur das Label dieses SelectOneMenu zentrieren */
.lang-select-centered .ui-selectonemenu-label {
    background: transparent;
    padding-right: 2.357rem; /* Platz für Trigger */
    text-align: center;
    width: 100%;
    display: block;
}

/* Trigger rechts fixieren, damit die Zentrierung nicht verrutscht */
.lang-select-centered .ui-selectonemenu-trigger {
    right: 0;
    position: absolute;
}

/* Container muss relative sein */
.lang-select-centered {
    position: relative;
}

/* Index */

.index_container_section_001 {
    background-color: #efd81b;
}

.index_h1 {
    margin-left: 1rem;
    margin-right: 1rem;
    margin-top: 0;
    padding-top: 1rem;
    color: #1b4d89;
    text-align: center;
}

.index_h1_headline_first_line {
    font-size: clamp(1rem, 9vw, 3.5rem);
}

.index_subcontainer_section {
    padding-top: 0;
    padding-bottom: 0;
    background-color: #fffbf0;
    width: 100%;
}

.index_paragraph {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    background-color: #fffbf0;
    padding-left: 1rem;
    padding-right: 1rem;
    margin-top: 0;
    margin-bottom: 0;
    text-align: justify;
    hyphens: auto;
}

.index_ul {
    padding-left: 1rem;
    padding-right: 1rem;
    margin-top: 0;
    margin-bottom: 0;
    text-align: justify;
    hyphens: auto;
}

.index_container_section {
    background-color: #f2f2f2;
}

.index_h2 {
    background-color: #f2f2f2;
    padding-bottom: 0;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 1rem;
    padding-top: 1rem;
    margin-top: 0;
    margin-bottom: 0;
    color: #1b4d89;
    text-align: center;
}

.index_h2_headline_first_line {
    font-size: clamp(1rem, 7vw, 2.75rem);
}

.bullet-list {
    padding-left: 0;
    margin-top: 0;
    margin-bottom: 0;
    list-style: none;
}

.bullet-list li{
    display: inline-flex;
    align-items: flex-start;
}

.bullet-icon {
    margin-right: 1rem;
    width: 1.2rem;
    flex-shrink: 0;
    color: #1b4d89;
}


/* Index-Card */

.index_container_card {
    background-color: #fffbf0;
}

.card_1_index_big_container {
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.card_1_index {
    width: 20rem;
    margin-bottom: 1rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    margin: 0 auto 0 auto;
    border: 0.025rem solid #999999;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.card_1_index .ui-card-header {
    padding-top: 0.5rem !important;
    background-color: #f2f2f2 !important;
}

.card_1_index .ui-card-title {
    font-size: 1.2rem !important;
    text-align: center !important;
}

.card_1_index .ui-card-subtitle {
    text-align: center !important;
}

.card_1_index .ui-card-content {
    text-align: center !important;
    height: 15rem !important;
}

.ui-card .ui-card-content {
    padding: 0 !important;
}

.card_1_index .ui-card-footer .cmdBtn {
    display: inline-block !important;
    width: 100% !important;
    color: white !important;
    font-size: 1.5rem !important;
    background-color: #00b050 !important;
    text-align: center !important;
    padding: 0.5rem 1rem !important;
    text-decoration: none !important;
    border-radius: 0.3rem !important;
}

/* Footer */

.footer {
    width: 100%;
    background-color: #1b4d89;
    text-align: center;
    z-index: 1000;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-bottom: 2rem;
}

.container_footer_Informationen {
    color: #f2f2f2;
    text-align: left;
}

.h3_footer {
    background-color: #1b4d89;
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    padding-top: 1rem;
    margin-top: 0;
    margin-bottom: 0;
    color: #f2f2f2;
    text-align: left;
}

.footer_comBtn_decoration {
    color: #f2f2f2;
    padding-left: 0.5rem;
    text-decoration: none;
}

.container_footer_Service {
    color: #f2f2f2;
    text-align: left;
}

/* All Pages */

.sub_container_text .text {
    text-align: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #1b4d89;
    margin: 0;
    padding: 0;
    padding-top: 0.5rem;
    background-color: #efd81b;
}

.global_container_other {
    padding: 0;
}

.page-subtitle-color {
    color: #666;
}


/* about */

.margin_top_zero{
    margin-top: 0;
}

.margin_bottom_zero{
    margin-bottom: 0;
}

.margin_bottom_two{
    margin-bottom: 2rem;
}

.margin_bottom_one_five{
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

.padding_bottom_zero{
    padding-bottom: 0;
}

.text_align_center{
    text-align: center;
}

.width_100_percent{
    width: 100%;
}

.page-container {
    max-width: 60rem;
    margin: 0 auto;
    padding: 2rem;
}

.page-subtitle {
    color: #666;
    margin-bottom: 2rem;
}

/* privacy */

.itrk-legaltext > div:first-child {
    text-align: center;
    color: #666;
}

.itrk-legaltext h1, h2, h3 {
    margin-top: 0;
    padding-top: 0;
    color: #333;
}

.itrk-legaltext ul {
    display: inline-block;   /* macht die UL zentrierbar */
    text-align: left;        /* Inhalt bleibt links */
    margin: 0 auto;          /* zentriert die UL */
    padding-left: 1.4rem;    /* schöner Einzug */
    max-width: 35rem;
}

.itrk-legaltext li {
    margin-bottom: 0.4rem;   /* optional: bessere Lesbarkeit */
}

/* general-terms-and-conditions */

.itrk-legaltext ul, ol {
    display: inline-block;   /* macht die UL zentrierbar */
    text-align: left;        /* Inhalt bleibt links */
    margin: 0 auto;          /* zentriert die UL */
    padding-left: 1.4rem;    /* schöner Einzug */
    max-width: 40rem;
}

.itrk-legaltext ol {
    list-style-position: inside; /* Nummer bleibt sichtbar */
    padding-left: 0;             /* kein linker Einzug */
    margin: 0 auto;              /* zentriert die OL */
    text-align: center;          /* zentriert Zahl + Text */
    margin-bottom: 1rem;
}

.itrk-legaltext ol li {
    text-align: center;          /* zentriert jede Zeile */
    margin-bottom: 0.4rem;       /* optional: schöner Abstand */
}

.itrk-legaltext h1:first-of-type {
    margin-top: 0;
    padding-top: 0;
}

/* revocation */

/* alles abgedeckt */

/* help */

.cmdBtn {
    display: inline-block !important;
    width: 100% !important;
    color: white !important;
    font-size: 1.5rem !important;
    background-color: #00b050 !important;
    text-align: center !important;
    padding: 0.5rem 1rem !important;
    text-decoration: none !important;
    border-radius: 0.3rem !important;
}

.help_form{
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
}

/* features */

.centered-table{
    width: 100%;
    margin-bottom: 2rem;
}

/* Zellen zentrieren */
.centered-table th,
.centered-table td {
    text-align: center;
    vertical-align: middle;
}

/* Header zentrieren – PrimeFaces nutzt .ui-column-title */
.centered-table .ui-column-title {
    display: flex;
    justify-content: center;
    width: 100%;
    text-align: center;
}

/* frequently-asked-questions */

/* contact */

.contact-wrapper {
    margin: 0 auto;
}

.contact-section {
    display: flex;
    flex-direction: column;
    align-items: center; /* Zentriert Inhalte horizontal */
}

.contact-input {
    width: 100%;
    margin-bottom: 1rem;
    margin: 10px auto; /* Zentriert die Inputs */
    display: block;
}

.contact-input-center{
    text-align: center !important;
}

.contact-button {
    margin-top: 1rem;
    width: 100%;
}

.select-center .ui-selectonemenu-label {
    text-align: center !important;
}

.select-center .ui-selectonemenu-trigger {
    justify-content: center !important;
}

.ui-selectonemenu-panel .ui-selectonemenu-item {
    text-align: center !important;
}

.container_form{
    max-width: 35rem;
    text-align:center
}

/* benefits */

.form_register{
    max-width: 20rem;
    margin-left: auto;
    margin-right: auto;
}

/* prices */

.pricing-container {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.pricing-card {
    width: 22rem;
    background: #fff;
    border-radius: 10px;
    padding: 1.5rem;
    text-align: center;
    border: 1px solid #ddd;
}

.pricing-card.limited {
    border: 2px solid lightgrey;
}

.pricing-title {
    font-size: 1.4rem;
    font-weight: bold;
}

.pricing-price {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.feature-list{
    margin-bottom: 0.5rem;
}

/*
.pricing-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;

}*/

.pricing-note {
    font-size: .9rem;
    margin-top: 1rem;
    color: #555;
}

.pricing-card.premium {
    border: 2px solid lightgrey;
}

/* registration */

.global_container_checkout_process {
    width: 100%;
    height: 3rem;
    background-color: #fffbf0;
}

.sub_container_border_step_1,
.sub_container_border_step_2,
.sub_container_border_step_3,
.sub_container_border_step_4 {
    display: flex;
    width: 100%;
    height: 1.5rem;
    border-bottom: 0.025rem solid #1b4d89;
}

.sub_container_border_step_1 .number,
.sub_container_border_step_2 .number,
.sub_container_border_step_3 .number,
.sub_container_border_step_4 .number {
    width: 12rem;
    height: 2.5rem;
    text-align: center;
    align-content: center;
    margin: 0.25rem auto 1rem auto;
    font-size: 1.2rem;
    background-color: #fffbf0;
    border-radius: 50%;
    color: #1b4d89;
}

.card_1_checkout_big_container {
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.card_1_checkout {
    width: 20rem;
    margin-bottom: 1rem;
    margin-left: 1.5rem;
    margin-right: 1.5rem;
    margin: 0 auto 0 auto;
    border: 0.025rem solid #999999;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
}

.card_1_checkout .ui-card-header {
    padding-top: 0.5rem !important;
    background-color: #f2f2f2 !important;
}

.card_1_checkout .ui-card-title {
    font-size: 1.2rem !important;
    text-align: center !important;
}

.card_1_checkout .ui-card-subtitle {
    text-align: center !important;
}

.card_1_checkout .ui-card-content {
    text-align: center !important;
    height: 6rem !important;
}

.ui-card .ui-card-content {
    padding: 0 !important;
}

.card_1_checkout .ui-card-footer .footer_btns {
    display: flex !important;
    justify-content: flex-end !important;
}

.card_1_checkout .ui-card-footer .cmdBtn_Back {
    width: 6rem !important;
    font-size: 1.5rem !important;
    margin-right: auto !important;
    background-color: #aa3333 !important;
    border: none !important;
    color: white !important;
    text-align: center !important;
    padding: 0.5rem 0.5rem !important;
    text-decoration: none !important;
    border-radius: 0.3rem !important;
}

.card_1_checkout .ui-card-footer .cmdBtn_Forward {
    width: 6rem !important;
    font-size: 1.5rem !important;
    background-color: #00b050 !important;
    border: none !important;
    color: white !important;
    text-align: center !important;
    padding: 0.5rem 0.5rem !important;
    text-decoration: none !important;
    border-radius: 0.3rem !important;
}

.sub_container_border_step_2 .number {
    width: 11rem;
}

.link_resend{
    display: block;
    width: 100% !important;
    text-align: center;
}

.sub_container_border_step_3 .number {
    width: 10rem;
}

.sub_container_border_step_4 .number {
    width: 11.5rem;
}

.con_out_registration {
    padding-top: 1rem;
    padding-bottom: 2rem;
}

.con_registration {
    width: 20rem;
    margin: 0 auto 0 auto;
    border: 0.025rem solid #999999;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.h1_registration {
    text-align: center;
}

.form_registration {
    align-items: center;
    width: 100%;
    margin: 0;
    padding: 0;
}

.field_email .pText_Email {
    font-size: 1.0rem;
    text-align: center;
    padding: 0;
}

.field_email .iText_Email {
    width: 100%;
    text-align: center;
}


.con_registration .btn_container {
    display: flex;
    justify-content: flex-start;
}

/*
.con_registration .field {
    text-align: center;
}*/

.pText_Code, .pText {
    font-size: 1.0rem;
    text-align: center;
    padding: 0;
}


.con_registration .btn_container .cmdBtn_Back {
    width: 6rem;
    font-size: 1.5rem;
    margin-left: 0rem;
    background-color: #aa3333;
    text-align: center !important;
    padding: 0.5rem 0.5rem !important;
    text-decoration: none !important;
    border-radius: 0.3rem !important;
    color: white !important;
}

.con_registration .btn_container .space_holder {
    width: 100%;
}

.con_registration .btn_container .cmdBtn_Forward {
    width: 6rem;
    font-size: 1.5rem;
    margin-right: 0rem;
    background-color: #009933;
    text-align: center !important;
    padding: 0.5rem 0.5rem !important;
    text-decoration: none !important;
    border-radius: 0.3rem !important;
    color: white !important;
}

.field_Code .iText_Code {
    width: 100%;
    height: 5rem;
    text-align: center;
    font-size: 2.5rem;
}

.field_Code::placeholder {
    text-align: center;
}

.ui-messages-error .ui-messages-error-icon {
    display: none !important;
}

.field_password {
    display: flex;

}

.field_password_1 .iText_password {
    margin-top: 0;
    text-align: center;
}

.field_password_2 .iText_password_wdh {
    margin-top: 0.5rem;
    text-align: center;
}
/*
.field_password_1 input::placeholder {
    text-align: center;
}

.field_password_2 input::placeholder {
    text-align: center;
}

.field_password_1 .ui-password {
    width: 100%;
}

.field_password_1 .ui-password input.ui-inputfield {
    padding-right: 2rem !important;
    width: 100%;
}

.field_password_1 .ui-password .ui-password-icon {
    margin-top: -1.125rem;
}

.field_password_2 .ui-password {
    width: 100%;
}

.field_password_2 .ui-password input.ui-inputfield {
    padding-right: 2rem !important;
    width: 100%;
}

.field_password_2 .ui-password .ui-password-icon {
    margin-top: -1.125rem;
}
*/

.field_password_1 input::placeholder,
.field_password_2 input::placeholder {
    text-align: center;
}

.field_password_1 .ui-password,
.field_password_2 .ui-password {
    width: 100%;
}

.field_password_1 .ui-password input.ui-inputfield,
.field_password_2 .ui-password input.ui-inputfield {
    padding-right: 2rem !important;
    width: 100%;
}

.field_password_1 .ui-password .ui-password-icon
{
    margin-top: -1.125rem;
}

.ui-password{
    width: 100% !important;
}

.ui-password-icon
{
    margin-top: -1.125rem !important;
}

.field_password_2 .ui-password .ui-password-icon{
    margin-top: -0.85rem;
}

.con_summary {
    font-size: 1.0rem;
    text-align: center;
    padding: 0;
}

.cmdBtn_Forward_Summary {
    display: inline-block !important;
    width: 100% !important;
    color: white !important;
    font-size: 1.5rem !important;
    background-color: #00b050 !important;
    text-align: center !important;
    padding: 0.5rem 1rem !important;
    text-decoration: none !important;
    border-radius: 0.3rem !important;
}

/* Login */

.login_btn_login {
    margin-top: 1rem;
    width: 100%;
    font-size: clamp(1.2rem, 6vw, 1.5rem) !important;
    margin-left: 0rem;
    background-color: #009933 !important;
    color: white;
    text-align: center !important;
    padding: 0.5rem 0.5rem !important;
    text-decoration: none !important;
    border-radius: 0.3rem !important;
    color: white !important;
}

.global_container_login {
    padding-top: 1rem;
    padding-bottom: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    overflow: auto;
}

.sub_container_login {
    max-width: 15rem;
    margin: 0 auto 0 auto;
    height: 50dvh;
}

.login_iText_Email,
.login_iText_password {
    width: 100%;
    text-align: center !important;
}

.login_field_password {
    padding-top: 0.5rem;
}

.login_pText {
    font-size: 1.0rem;
    text-align: center;
    padding: 0;
    margin: 0;
}

.login_pText_register {
    display: inline-block;
    width: 100%;
    font-size: 1.0rem;
    text-align: center;
    padding: 0;
}

/* public and private */

.display_none{
    display: none;
}

.padding_bottom_00{
    padding-bottom: 0;
}

/* Error-Page */

/* ---------------------------------------
   Fehlerseite – Container
---------------------------------------- */
.error-container {
    max-width: 600px;
    margin: 80px auto;
    background: white;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

/* ---------------------------------------
   Fehlerseite – Überschrift
---------------------------------------- */
.error-title {
    margin-top: 0;
    font-size: 26px;
    color: #333;
}

/* ---------------------------------------
   Fehlerseite – Text
---------------------------------------- */
.error-text {
    color: #555;
    line-height: 1.6;
}

/* ---------------------------------------
   Fehlerseite – Fehler-ID Box
---------------------------------------- */
.error-id {
    margin-top: 20px;
    padding: 10px;
    background: #eee;
    border-radius: 6px;
    font-family: monospace;
    color: #444;
}

/* ---------------------------------------
   Fehlerseite – Button
---------------------------------------- */
.error-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 24px;
    background: #0066cc;
    color: white;
    text-decoration: none;
    border-radius: 6px;
}

.error-btn:hover {
    background: #004c99;
}

/* PW-Reset - Success */

/* PW-Reset – Eingabeseite */

/* ---------------------------------------
   Passwort-Reset – Layout Container
---------------------------------------- */
.pwreset-container {
    margin: 2em auto;
    max-width: 500px;
    font-family: sans-serif;
}

/* ---------------------------------------
   Passwort-Reset – Überschriften
---------------------------------------- */
.pwreset-title {
    margin: 0 0 1em 0;
}

.pwreset-subtitle {
    margin: 1.5em 0 1em 0;
}

/* ---------------------------------------
   Passwort-Reset – Formularelemente
---------------------------------------- */
.pwreset-label {
    display: block;
    width: 100%;
    margin: 0.5em 0 0.2em 0;
}

.pwreset-input {
    display: block;
    width: 100%;
    margin: 0.2em 0 0.8em 0;
}

.pwreset-button {
    display: block;
    width: 100%;
    margin: 1em 0;
    padding: 0.7em;
    background: #007bff;
    color: white;
    border: none;
    border-radius: 4px;
}

.pwreset-button:hover {
    background: #0066d1;
}

/* ---------------------------------------
   Passwort-Reset – Fehlermeldungen
---------------------------------------- */
.pwreset-error {
    color: red;
    margin: 0.3em 0 0.8em 0;
    display: block;
}


/* PW-Reset – Success */

/* ---------------------------------------
   Passwort-Reset – Erfolgsseite Container
---------------------------------------- */
.pwreset-success-container {
    max-width: 500px;
    margin: 2em auto;
    text-align: center;
    font-family: sans-serif;
}

/* ---------------------------------------
   Passwort-Reset – Überschriften
---------------------------------------- */
.pwreset-success-title {
    margin: 0 0 1em 0;
}

.pwreset-success-subtitle {
    margin: 1.5em 0 1em 0;
}

/* ---------------------------------------
   Passwort-Reset – Text
---------------------------------------- */
.pwreset-success-text {
    margin: 0.5em 0;
    color: #333;
}

/* ---------------------------------------
   Passwort-Reset – Link
---------------------------------------- */
.pwreset-success-link {
    color: #007bff;
    text-decoration: none;
}

.pwreset-success-link:hover {
    text-decoration: underline;
}


/* PW-Reset – Fehlerseite */

/* ---------------------------------------
   Passwort-Reset – Fehlerseite Container
---------------------------------------- */
.pwreset-error-container {
    max-width: 500px;
    margin: 2em auto;
    text-align: center;
    font-family: sans-serif;
    color: #c00;
}

/* ---------------------------------------
   Passwort-Reset – Überschriften
---------------------------------------- */
.pwreset-error-title {
    margin: 0 0 1em 0;
}

.pwreset-error-subtitle {
    margin: 1.5em 0 1em 0;
}

/* ---------------------------------------
   Passwort-Reset – Text
---------------------------------------- */
.pwreset-error-text {
    margin: 0.5em 0;
}

/* ---------------------------------------
   Passwort-Reset – Link
---------------------------------------- */
.pwreset-error-link {
    color: #007bff;
    text-decoration: none;
}

.pwreset-error-link:hover {
    text-decoration: underline;
}

/* Banner-Language */
.lang-modal-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    z-index: 9998;
}

.lang-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

.lang-modal-content {
    background: #fff;
    padding: 25px 30px;
    border-radius: 8px;
    width: 90%;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.25);
    animation: fadeInScale 0.25s ease-out;
}

.lang-modal-content p {
    margin-bottom: 20px;
    font-size: 16px;
}

.btn-switch {
    display: inline-block;
    margin-right: 10px;
    padding: 8px 16px;
    background: #0078d4;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
}

.btn-stay {
    display: inline-block;
    padding: 8px 16px;
    background: #ccc;
    color: #333;
    text-decoration: none;
    border-radius: 4px;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.95);
    }
    to   {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.lang-checkbox-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    margin-top: 15px;
}

/* Entfernt bei alle messages die Icons */

/* Icons entfernen */
.ui-messages-info-icon,
.ui-messages-warn-icon,
.ui-messages-error-icon,
.ui-messages-fatal-icon {
    display: none !important;
}

/* Linken Rand entfernen */
.ui-messages-info,
.ui-messages-warn,
.ui-messages-error,
.ui-messages-fatal {
    border-left: none !important;
    padding-left: 0 !important; /* Kein Platz für Icons */
}

/* Container der Messages: Inhalt zentrieren */
.ui-messages {
    text-align: center !important;
}

/* UL komplett neutralisieren */
.ui-messages ul {
    margin: 0 !important;
    padding: 0 !important;
    list-style-type: none !important;
}

/* LI als Block ohne Extra‑Abstand */
.ui-messages ul li {
    margin: 0 !important;
    padding: 0 !important;
}

.ui-messages-info,
.ui-messages-warn,
.ui-messages-error,
.ui-messages-fatal {
    padding: 0.4rem 0.8rem !important; /* gleichmäßig, ohne Linksversatz */
}

/* Widerrufsrecht */

/* Wrapper */
.widerruf-wrapper {
    display: none;
    text-align: center;
    margin-top: 1.25rem;
}

/* Button-Container */
.widerruf-button-container {
    text-align: center;
    margin-bottom: 1.25rem;
}

/* Eingabefelder */
.widerruf-input {
    width: 100%;
    margin-bottom:  1.0rem;
}

/* Textarea */
.widerruf-textarea {
    width: 100%;
    margin-bottom:  1.0rem;
}

/* Submit-Button */
.widerruf-submit {
    margin-top:  1.25rem;
}

/* Section */
.widerruf-section {
    text-align: center;
    width: 100%;
}

.widerruf-button-container {
    text-align: center;
    margin-bottom: 20px;
}

.widerruf-button-container.hidden {
    display: none;
}

.widerruf-wrapper {
    display: none;
    text-align: center;
}

.widerruf-wrapper.visible {
    display: block;
}

.widerruf-btn{
    width: 15rem;
}

.btn_green{
    background: mediumseagreen !important;
    transition: background .2s, color .2s, border-color .2s, box-shadow .2s, opacity .2s !important;
    border: none !important;
}

