@media (max-width: 2560px) {
    html {
        font-size: 100%;
    }
}

@media (min-width: 2560px) {
    html {
        font-size: 140%;
    }
}

main {
    width: 100%;
}

:root {
    --btn-color: #fff;
    --link-text-color: #0a0a0a;
    --btn-blurry-bg-color: rgba(255, 255, 255, 0.2);
    --btn-blurry-bg-color-hover: rgba(255, 255, 255, 0.4);
    --bg-color: #eeeeee;
    --white-color: #ffffff;
    --btn-bg-color: #da291c;
    --btn-bg-hover-color: #8a190c;
    --btn-secondary-color: #fff;
    --btn-secondary-bg-color: #333;
    --btn-secondary-bg-hover-color: #0a0a0a;
    --btn-radius: 8px;
    --font-family: Sorglos Sans, sans-serif;
    --font-size-base: 16px;
    --font-size-large: 1.5rem;
    --font-size-small: 13px;
    --font-weight-small: 300;
    --font-weight-bold: 700;
    --border-color: #999;
    --box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.16);
    --transition-duration: 0.8s;
    --msg-bg-color: #333;
    --msg-border-color: #666666;
    --font-family-sorglos-sans: Sorglos Sans, sans-serif;
    --disabled-color: #8b96a8;
    --disabled-background-color: #aeb4b5;
    --color-primary: #DA291C;
    --color-secondary: #000000;
    --color-tertiary: #424242;
    --color-disabled: #A2A2A2;
    --color-background: #F2F3F4;
    --color-surface: #FFFFFF;
    --btn-primary-hover: #B01F14;
    --btn-secondary: var(--color-secondary);
    --btn-secondary-hover: var(--color-tertiary);
    --btn-secondary-text: var(--color-surface);
    --nav-color: var(--color-surface);
    --nav-tab-border-color: var(--color-surface);
    --nav-tab-border-selected-color: var(--color-primary);
    --nav-tab-hover-or-selected-color: var(--color-background);
    --nav-tab-text-color: var(--color-secondary);
    --color-skeleton-loading: #D7D7D7;
    --color-canvas-bars: var(--color-tertiary);
    --li-card-main-one: #005F62;
    --li-card-main-two: #E6AC28;
    --li-card-main-three: #739191;
    --li-card-main-four: #A56E28;
    --li-card-main-five: #A9C7C7;
    --li-card-main-six: #BD9E79;
    --li-card-main-seven: #7AAAAF;
    --li-card-main-eight: #F5DCAF;
    --li-card-main-nine: #424242;
    --li-card-main-ten: #CCCCCC;
    --login-color: #000000;
    --color-background-image-center: var(--color-surface);
    --font: "Sorglos Sans";
    --btn-border-radius: .25rem;
    --dropdown-border-radius: .25rem;
    --default-border-size: .075rem;
}

html, :host {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: ui-sans-serif, system-ui, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", Segoe UI Symbol, "Noto Color Emoji";
    font-feature-settings: normal;
    font-variation-settings: normal;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
}

.text-primary {
    color: var(--color-primary); /* Replace with your primary color */
    margin: 0;
}

.button-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.spacer {
    width: 0.75rem; /* w-3 = 0.75rem */
}

@media (max-width: 764px) {
    .button-text-desktop {
        display: none;
    }
}

@media (min-width: 764px) {
    .button-text-phone {
        display: none;
    }
}

.button-text {
    font-weight: bold;
    vertical-align: middle;
}

.button-icon {
    height: 1.5rem; /* h-6 = 1.5rem */
    width: 1.5rem; /* w-6 = 1.5rem */
    margin: auto;
    stroke: var(--color-surface);
}


.full-screen-bg {
    height: 100%;
    background-color: var(--bg-color);
    font-family: var(--font-family);
    font-variant-numeric: tabular-nums;
    color: #000000;
}

.main-background {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-size: cover;
    background-position: center;
    background-image: url(../img/wstv-login-background.jpg);
}

*, :before, :after {
    box-sizing: border-box;
    border-width: 0;
    border-style: solid;
    border-color: #e5e7eb;
}

.content-container {
    display: flex;
    flex-grow: 1;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.content-container-div {
    padding: 1.25rem;
    align-content: center;
    flex-grow: 1;
    max-width: 32rem;
    width: 100%;
    display: grid;
}

.content-container-grid {
    padding-bottom: 1.25rem;
    align-self: center;
    gap: 2.5rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    display: grid;
}

@media (min-width: 1024px) {
    .content-container-grid {
        padding-bottom: 2.5rem;
    }
}

.content-logo-div {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: flex;
}

.logo {
    width: 75%;
}

.content-login-inputs {
    gap: 1rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    display: grid;
}

.content-login-form {
    display: contents;
}

/* here if needed  */
.login-input {
    display: grid;
}

.username-block {
    width: 100%;
    display: block;
    position: relative;
}

.username-label {
    color: var(--login-color);
    letter-spacing: .025rem;
    line-height: 1rem;
    font-weight: 600;
    font-size: .75rem;
    display: block;
    margin-bottom: .5rem;
}

.username-input-div {
    line-height: 1.25;
    font-size: .875rem;
    background-color: #fff3;
    border-color: var(--login-color);
    border-width: var(--default-border-size);
    border-radius: .375rem;
    flex-direction: row;
    appearance: none;
    width: 100%;
    height: 2.5rem;
    display: flex;
}

.username-input {
    color: var(--login-color);
    font-weight: 300;
    padding: .75rem;
    background-color: #fff0;
    border-radius: .375rem;
    flex-grow: 1;
    flex: 1 1 0%;
    width: 100%;
    height: 100%;
    outline: none;
}

input {
    font-family: inherit;
    font-feature-settings: inherit;
    font-variation-settings: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
}

.password-block {
    gap: .5rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    display: grid;
}

.password-block-div {
    width: 100%;
    display: block;
    position: relative;
}

.password-label {
    color: var(--login-color);
    letter-spacing: .025rem;
    line-height: 1rem;
    font-weight: 600;
    font-size: .75rem;
    display: block;
    margin-bottom: .5rem;
}

.password-input-div {
    line-height: 1.25;
    font-size: .875rem;
    background-color: #fff3;
    border-color: var(--login-color);
    border-width: var(--default-border-size);
    border-radius: .375rem;
    flex-direction: row;
    appearance: none;
    width: 100%;
    height: 2.5rem;
    display: flex;
}

.password-input {
    color: var(--login-color);
    font-weight: 300;
    padding: .75rem;
    background-color: #fff0;
    border-radius: .375rem;
    flex-grow: 1;
    flex: 1 1 0%;
    width: 100%;
    height: 100%;
    outline: none;
    border-top-right-radius: 0px;
    border-bottom-right-radius: 0px;
}

.password-input-icon {
    align-items: center;
    flex-grow: 0;
    width: 2rem;
    border-radius: .375rem;
    outline: none;
    border-top-left-radius: 0px;
    border-bottom-left-radius: 0px;
}

.password-eye-open {
    stroke: var(--login-color);
    width: 1.5rem;
    height: 100%;
    margin-left: 0;
    margin: auto;
    display: block;
    vertical-align: middle;
    cursor: pointer;
}

.password-eye-closed {
    stroke: var(--login-color);
    width: 1.5rem;
    height: 100%;
    margin-left: 0;
    margin: auto;
    display: none;
    vertical-align: middle;
    cursor: pointer;
}

.password-forgot-div {
    font-size: .75rem;
    text-align: right;
}

.bg-transparent {
    background-color: transparent;
}

.password-forgot-link {
    color: var(--login-color);
    text-decoration: inherit;
}

.username-input:focus {
    outline: none;
    background-color: #cad2d4;
}
.password-input:focus {
    outline: none;
    background-color: #cad2d4;
}

.password-input:focus + .password-input-icon {
    outline: none;
    background-color: #cad2d4;
}

.login-submit-block {
    gap: .5rem;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    display: grid;
    margin-top: 1rem;
}

.login-submit-button-div {

}

.login-submit-button {
    color: var(--btn-color);
    background-color: var(--color-primary);
    pointer-events: all;
    cursor: pointer;
    position: relative;
    height: 3rem;
    width: 100%;
    border-radius: var(--btn-border-radius);
    padding-left: .75rem;
    padding-right: .75rem;
    text-align: center;
    font-size: .875rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .05em;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    -webkit-appearance: button;
    background-image: none;
    margin: 0;
    padding: 0;
}

.btn-disabled {
    opacity: .6;
    --tw-text-opacity: 1;
    color: rgb(229 229 229 / var(--tw-text-opacity, 1)) !important;
    --tw-bg-opacity: 1;
    background-color: rgb(163 163 163 / var(--tw-bg-opacity, 1));
    pointer-events: none;
    cursor: pointer;
}

.login-submit-arrow {
    stroke: #e5e5e5;
    color: #e5e5e5;
    width: 1.5rem;
    height: 1.5rem;
    margin: auto;
    top: 0;
    left: 1rem;
    bottom: 0;
    position: absolute;
    vertical-align: middle;
    display: block;
}

.register-button {
    color: var(--login-color);
    background-color: #fff3;
    position: relative;
    height: 3rem;
    width: 100%;
    border-radius: var(--btn-border-radius);
    padding-left: .75rem;
    padding-right: .75rem;
    text-align: center;
    font-size: .875rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .05em;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    cursor: pointer;
    -webkit-appearance: button;
    background-image: none;
    cursor: pointer;
    text-transform: none;
    margin: 0;
    padding: 0;
}

.id-austria-button {
    color: var(--login-color);
    background-color: #fff3;
    position: relative;
    height: 3rem;
    width: 100%;
    border-radius: var(--btn-border-radius);
    padding-left: .75rem;
    padding-right: .75rem;
    text-align: center;
    font-size: .875rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .05em;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    cursor: pointer;
    -webkit-appearance: button;
    background-image: none;
    cursor: pointer;
    text-transform: none;
    margin: 0;
    padding: 0;
}

.footer {
    padding-bottom: env(safe-area-inset-bottom);
    align-self: end;
    justify-content: flex-end;
    flex-direction: column;
    flex: 1 1 0%;
    max-width: 32rem;
    width: 100%;
    display: flex;
}

.footer-block {
    display: block;
    margin-top: .75rem;
    margin-bottom: .75rem;
}

.footer-row {
    font-size: .75rem;
    justify-content: space-around;
    display: flex;
}

.footer-span {
    background-color: transparent;
}

.footer-link {
    color: var(--login-color);
    text-decoration: none;
}

.arrow-right-icon {
    width: 24px;
    height: 24px;
    margin-left: 10px;
    background-size: contain;
    background-repeat: no-repeat;
    stroke: transparent;
    stroke-width: 0;
    border: none !important;
    outline: none !important;
    background-image: url('../img/arrow-right.svg');
    position: absolute;
    left: 10px;
    z-index: 1;
}

.arrow-right-login-icon {
    top: 0;
    left: 1rem;
    bottom: 0;
    vertical-align: middle;
    display: block;
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
    width: 1.5rem;
    height: 1.5rem;
    position: absolute;
    border: none !important;
    outline: none !important;
    background-image: url('../img/arrow-right.svg');
    color: white;
    stroke: white;
    background-repeat: no-repeat;
    background-size: contain;
}

.in-element-icon {
    position: absolute;
    right: 10px;
    transform: translateY(-30%);
    z-index: 1; /* Ensure it's above the input */
    width: 24px !important;;
    align-self: center;
    margin-top: 12px;
}

.arrow-right-icon-disabled {
    background-image: url('../img/arrow-right-disbaled.svg') !important;
}

.error-messages-div {
    padding: 1rem;
    background-color: var(--color-surface);
    border-color: var(--color-primary);
    border-style: solid;
    border-width: var(--default-border-size);
    border-radius: .375rem;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    display: flex;
    left: 0;
    right: 0;
    position: relative;
}

.error-message {
    color: var(--color-secondary);
    line-height: 1.375;
    font-weight: 400;
    font-size: .75rem;
    align-items: center;
    flex-direction: row;
    display: flex;
}

.error-message:after {
    content: "";
    background-image: url(../img/arrow-icon.svg);
    width: 0.75rem;
    height: 0.75rem;
    background-size: .95rem;
    background-repeat: no-repeat;
    background-position: top;
    bottom: -0.75rem;
    left: 1rem;
    position: absolute;
}

.resend-button{
    position: relative;
    height: 3rem;
    width: 100%;
    border-radius: var(--btn-border-radius);
    padding-left: .75rem;
    padding-right: .75rem;
    text-align: center;
    font-size: .875rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: .05em;
    transition-property: all;
    transition-timing-function: cubic-bezier(.4, 0, .2, 1);
    transition-duration: .15s;
    cursor: pointer;
    -webkit-appearance: button;
    background-image: none;
    cursor: pointer;
    text-transform: none;
    margin: 0;
    padding: 0;
    color: var(--btn-color);
    background-color: var(--color-primary);
}

.otp-block {
    width: 100%;
    display: block;
    position: relative;
}

.otp-label {
    color: var(--login-color);
    letter-spacing: .025rem;
    line-height: 1rem;
    font-weight: 600;
    font-size: .75rem;
    display: block;
    margin-bottom: .5rem;
}

.otp-input-div {
    line-height: 1.25;
    font-size: .875rem;
    background-color: #fff3;
    border-color: var(--login-color);
    border-width: var(--default-border-size);
    border-radius: .375rem;
    flex-direction: row;
    appearance: none;
    width: 100%;
    height: 2.5rem;
    display: flex;
}

.otp-input {
    color: var(--login-color);
    font-weight: 300;
    padding: .75rem;
    background-color: #fff0;
    border-radius: .375rem;
    flex-grow: 1;
    flex: 1 1 0%;
    width: 100%;
    height: 100%;
    outline: none;
}

/* Change Autocomplete styles in Chrome*/
input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus
input:-webkit-autofill,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover
textarea:-webkit-autofill:focus,
select:-webkit-autofill,
select:-webkit-autofill:hover,
select:-webkit-autofill:focus {
    -webkit-text-fill-color: var(--login-color);
    -webkit-box-shadow: 0 0 0px 1000px #c9d1d3 inset;
    transition: background-color 5000s ease-in-out 0s;
}