body>nav>div>div>div>ul {
    align-items: center !important;
    display: flex;
}

body {
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between;
    align-items: stretch;
    max-height: 100vh;
    min-height: 100vh;
    min-width: 390px;
}

html {
    display: flex;
    flex-direction: column;
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    justify-content: space-between;
}

input {
    border-bottom: 0 !important;
}

.row-spacer {
    align-self: stretch;
    height: 100%;
    padding: 2em;
}

.to-shop {
    display: flex !important;
}

.error {
    font-size: 1em;
    color: #ab0000;
}

#client-side-error {
    font-size: 1em;
    color: rgb(217 56 69/var(--tw-text-opacity));
}

.password-input-field {
    display: flex;
    background: white;
}

.eye-button {
    margin-right: 1em;
}

.eye-closed-button {
    margin-right: 1em;
}

input[type*="password"]~.eye-button,
input[type*="text"]~.eye-closed-button {
    display: none;
}



input[type*="password"]~.eye-closed-button,
input[type*="text"]~.eye-button {
    display: block;
}

input[type="submit"] {
    cursor: pointer;
}

.invalid {
    /*border: 1px solid #ab0000;*/
    border-bottom: 1px solid rgb(217 56 69/var(--tw-text-opacity));
}

#invalid_password {
    border-bottom: 1px solid rgb(217 56 69/var(--tw-text-opacity));
}

.no-client-side-error {
    display: none !important;
}

.show-client-side-error {
    display: flex !important;
}

@media screen and (max-width: 1920px) {
    body {
        font-size: 16px;
    }
}

@media screen and (max-width: 1440px) {
    body {
        font-size: 16px;
    }
}

@media screen and (max-width: 1024px) {
    body {
        font-size: 16px;
    }
}

@media screen and (max-width: 768px) {
    body {
        font-size: 15px;
    }
}

@media screen and (max-width: 480px) {
    body {
        color: #1A1A1B;
        font-family: Urbanist;
        font-size: 15px;
        font-style: normal;
        line-height: 180%;
        /* 27px */
        letter-spacing: 0.45px;
    }

    .menu-toggle {
        height: 5em;
        overflow: hidden;
    }

    .menu-toggle:focus {
        height: auto;
        overflow: visible;
    }

    .to-shop-text {
        display: none;
    }
}

.menu-hover {
    border-bottom: 2px solid white;
    margin-right: 2em;
}

.menu-hover:hover,
.menu-hover:focus {
    border-color: red;
    color: red;
    cursor: pointer;
}

.input-group {
    margin-bottom: 1em !important;
}

@media screen and (max-width: 512px) {
    .hide-button {
        display: none;
    }
}

.radio-grouptext input[type="radio"] {
    /* Customize radio button styles here */
    margin-right: 16px;
    accent-color: black;
}

.radio-grouptext td {
    padding-right: 40px
}

.text-LEX44 {
    color: #D93845
}

.text-LEX43 {
    color: #1C865A
}

.passwordstrength-group {
    visibility: hidden;
    display: none;
}

/* Hide the default radio button */
.custom-radio-group input[type="radio"] {
    opacity: 0;
    position: absolute;
}

/* Container for the custom radio button */
.custom-radio-group label {
    display: inline-flex;
    align-items: center;
    cursor: pointer;
    margin-right: 20px;
    /* Add some spacing between radio buttons */
}

/* Unchecked state - the SVG */
.custom-radio-group label:before {
    content: '';
    display: inline-block;
    width: 24px;
    height: 24px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><circle cx="12" cy="12" r="11" stroke="%23ACACAF" stroke-width="2"/></svg>');
    background-size: contain;
    margin-right: 8px;
    /* Adjust space between SVG and label */
}

/* Checked state - Add a filled circle inside */
.custom-radio-group input[type="radio"]:checked+label:before {
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><circle cx="12" cy="12" r="11" fill="%23000000" stroke="%23000000" stroke-width="2"/><circle cx="12" cy="12" r="6" fill="%23FFFFFF"/></svg>');
}

.error-text {
    color: #e81546;
}

.error-text a {
    color: #03a9f4;
}

.form-div {
    min-width: 558px;
}

.side-div {
    min-width: 453px;
    width: auto;
}

/* If .hide-next-block exists, hide .show-block */
.hide-next-block+.show-block {
    display: none;
}

.lexware-logo-svg-footer {
    width: 31em;
    height: 2em;
    min-width: 31em;
    max-height: 2em;
    margin-right: 2em;
}

/* Modern CSS-only checkbox pattern - peer-checked fallback */
.peer:checked~label svg {
    display: block !important;
}

/* HTML5 form validation styling */
form:invalid button[type="submit"],
form:invalid input[type="submit"] {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

form:valid button[type="submit"],
form:valid input[type="submit"] {
    opacity: 1;
    cursor: pointer;
    pointer-events: auto;
}

/* Required field visual indicator */
input:required:not(:focus),
textarea:required:not(:focus) {
    border-left: 3px solid #075BF9;
}

input:invalid:not(:focus),
textarea:invalid:not(:focus) {
    border-color: #E81546;
}