﻿html, body {
    width: 100%;
    height: 100%;
    margin: 0;
}
.empty-layout{
    background: var(--bg);
    color: var(--fg);
}
.page {
    background: var(--bg);
    color: var(--fg);
}
/* Ganze Seite: Login oben, zentriert horizontal */
.login-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px; /* wie auf deinem Screenshot: oben etwas Abstand */
}
.login-spinner {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 4px solid var(--main);
    border-top-color: var(--primary);
    animation: authspin 0.8s linear infinite;
    align-self: center;
    margin-top: 10px;
}
/* Grosser Titel oben */
.login-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 40px;
}

/* Panel mit Inputs */
.login-panel {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 420px;
}
.login-div{
    margin-top: 10px;
    align-self: center;
    display: flex;
    flex-direction: row;
    gap: 10px;
}
/* Label über Inputs */
.login-label {
    font-size: 0.9rem;
    margin-left: 4px;
    margin-bottom: 2px;
}

/* Zeile: Icon + Input (+ Eye-Button) */
.login-input-row {
    border: 2px solid var(--border);
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Links das Icon */
.login-icon {
    font-size: 1.4rem;
    width: 32px;
    text-align: center;
}

/* Textbox: wie im Screenshot, rund, weisser Rahmen */
.login-input {
    flex: 1;
    border: none;
    background: none;
    padding: 6px 14px;
    color: var(--fg);
    outline: none;
    font-size: 0.95rem;
    min-width: 200px;
}
.login_div_user{
    width: 38px;
    height: 30px;
}
/* Password-Eye-Button rechts im Feld */
.login-eye-btn {
    border: none;
    background: transparent;
    color: var(--fg);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0 6px;
    fill: none;
}

/* Login-Button (Türkis, rund, mit Border) */
.login-button {
    margin-top: 14px;
    align-self: center;
    padding: 8px 40px;
    border-radius: 999px;
    border: 2px solid darkcyan;
    background: darkcyan;
    color: var(--fg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    box-shadow: 0 0 12px rgba(0, 167, 181, 0.7);
}

    .login-button:hover {
        filter: brightness(1.1);
    }

/* Remember-me Row */
.login-remember-row {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    justify-content: center;
    font-size: 0.9rem;
}

.login-remember-checkbox {
    appearance: none;
    -webkit-appearance: none;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    border: 2px solid darkcyan;
    background: transparent;
    cursor: pointer;
    display: inline-grid;
    place-content: center;
}
    .login-remember-checkbox::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        transform: scale(0);
        transition: transform 0.15s ease-in-out;
        background: #00bcd4;
    }
    .login-remember-checkbox:checked::before {
        transform: scale(1);
    }
/* Fehlermeldung */
.login-error {
    margin-top: 10px;
    color: red;
    text-align: center;
    font-size: 0.9rem;
}
.icon-user path {
    fill: var(--fg);
}
.icon-user {
    width: 35px;
    height: 35px;
}
.pw-login path {
    stroke: var(--fg);
    stroke-width: 1px;
    width: 100%;
}
.pw-login {
    width: 35px;
    height: 35px;
    fill: none;
}
.ico_show_login{
    width: 30px;
    height: 30px;
    stroke: var(--fg);
}
.tfa-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 40px; /* wie auf deinem Screenshot: oben etwas Abstand */
}
.tfa-title{
    font-size: 35px;
    font-weight: bold;
}
.tfa-desc{
    font-size: 20px;
}
.tfa-code-input {
    margin-top: 50px;
    flex: 0;
    border-radius: 15px;
    border: 3px solid var(--border);
    background: transparent;
    padding: 6px 14px;
    color: var(--primary);
    outline: none;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    width: 200px
}
    .tfa-code-input:focus {
        border-color: var(--primary);
    }
.bt-tfa-back {
    margin-top: 20px;
    align-self: center;
    padding: 8px 40px;
    border-radius: 999px;
    border: 2px solid var(--border);
    background: transparent;
    color: var(--fg);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
}
    .bt-tfa-back:hover {
        background: var(--primary);
    }
.ico_show_login {
    vertical-align: top;
    width: 30px;
    height: 30px;
    fill: none;
}
.alp-search {
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.border-search-alp {
    border: 3px solid var(--border);
    width: fit-content;
    border-radius: 15px;
}
.bt-alp-refresh {
    width: 45px;
    height: 45px;
    background: none;
    border: 3px solid var(--border);
    border-radius: 990px;
}
    .bt-alp-refresh:hover {
        background: var(--primary);
    }
.ico_refresh_alp {
    background: none;
    fill: none;
    stroke: var(--fg);
    stroke-width: 2px;
    width: auto;
    height: auto;
    align-self: auto;
}
.svg-search-alp {
    stroke: var(--fg);
    stroke-width: 2px;
    fill: none;
    width: 35px;
    height: 35px;
    margin-left: 5px;
    background: none;
}
.txt-search-alp {
    vertical-align: middle;
    outline: none;
    border: none;
    border-color: none;
    font-size: 20px;
    stroke: none;
    width: fit-content;
    height: 40px;
    background: none;
    color: var(--fg);
}
.bt-delsearch-alp {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    background: none;
}
.svg-delsearch-alp {
    fill: var(--fg);
    width: 18px;
    height: 18px;
}
.allpw-page{
    display: flex;
    flex-direction: column;
    gap: 0px;
}
.alp-title{
    font-size: 35px;
    font-weight: bold;
}
.lb-border{
    border: red;
}
/* Listbox */
.pw-list {
    display: block;
    flex-direction: column;
    padding: 6px;
    margin-top: 20px;
    margin-bottom: 20px;
    border: 5px solid var(--main);
    border-radius: 15px;
    overflow-y: hidden;
    min-height: 0px;
    overflow-x: hidden;
    background: transparent;
    flex: 0;
}

.pw-row {
    display: grid;
    align-items: center;
    padding: 10px 8px;
    /* 2*,4*,4*,2*,3*,2*,2*,1*,1* -> grob in CSS */
    grid-template-columns: 2fr 4fr 4fr 2fr 3fr 2fr 2fr 1fr 1fr;
    border-radius: 10px;
    cursor: pointer;
}

    .pw-row:hover {
        background: var(--main);
    }

    .pw-row.is-selected {
        background: var(--main);
    }

.pw-col0 {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pw-fav-btn {
    width: 25px;
    height: 25px;
    background: transparent;
    border: 0;
    padding: 0;
    cursor: pointer;
}

.pw-avatar {
    width: 35px;
    height: 35px;
    border-radius: 999px;
    overflow: hidden;
    display: grid;
    place-items: center;
    background: var(--main);
}

.pw-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.pw-initials {
    font-weight: 800;
    font-size: 12px;
}

.pw-name, .pw-user {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.pw-name {
    font-weight: 700;
    font-size: 17px;
}

.pw-user {
    font-size: 15px;
    opacity: 0.9;
}

.pw-pass {
    font-size: 15px;
    letter-spacing: 2px;
    user-select: none;
    justify-self: end;
}

.pw-action {
    width: 20px;
    height: 20px;
    border: 0;
    padding: 0;
    background: transparent;
    cursor: pointer;
}

.pw-ico {
    width: 25px;
    height: 25px;
    display: block;
    stroke: var(--fg);
    fill: none;
    stroke-width: 1.2px;
    transition: fill 0.15s ease;
}
.pw-ico-fill {
    width: 25px;
    height: 25px;
    display: block;
    fill: var(--fg);
}

/* Hover-only Buttons wie WPF Trigger */
.hover-only {
    visibility: hidden;
}

.pw-row:hover .hover-only {
    visibility: visible;
}
/* Show */
.show-page{
    display: flex;
    flex-direction: column;
}
.txt-show-name{
    margin-top: 10px;
}
.inp-show-name {
    background: none;
    outline: none;
    border: 2px solid var(--border);
    border-radius: 6px;
    width: 500px;
    height: 40px;
    color: var(--fg);
}
.fav-ico-show {
    margin-left: 10px;
    width: 35px;
    height: 35px;
    vertical-align: central;
    fill: none;
    transition: fill 0.15s ease;
    stroke: var(--fg);
    stroke-width: 1.5px;
}

    .fav-ico-show.is-fav {
        fill: darkcyan;
    }
.fav-ico-edit {
    margin-left: 0px;
    width: 35px;
    height: 35px;
    vertical-align: central;
    fill: none;
    transition: fill 0.15s ease;
    stroke: var(--fg);
    stroke-width: 1.5px;
}
    .fav-ico-edit.is-fav {
        fill: var(--primary);
    }

.img-show-name {
    fill: none;
    stroke: var(--fg);
    stroke-width: 1.5px;
}
.dev-show-name{
    display: flex;
    flex-direction: row;
    height: contain;
    align-items: center;
}
.img-show-site {
    background: var(--main);
    border: 2px solid white;
    width: 35px;
    height: 35px;
    border-radius: 50px;
    margin-left: 10px;
}
.dev-show-user {
    border: 2px solid var(--border);
    border-radius: 6px;
    width: fit-content;
    width: 500px;
    height: 40px;
}
.txt-show-edit {
    background: none;
    color: var(--fg);
    outline: none;
    border: none;
}
.inp-show-user {
    background: none;
    outline: none;
    border: none;
    width: 460px;
    color: var(--fg);
}
.btn-show-user {
    width: 25px;
    height: 25px;
    background: none;
    margin: 5px 0 5px 0;
    border: none;
}
.svg-show-user {
    width: 25px;
    height: 25px;
    border: none;
}
.img-show-user {
    fill: var(--fg);
    align-content: center;
}
.dev-show-pw {
    border: 2px solid var(--border);
    border-radius: 6px;
    width: fit-content;
    width: 500px;
    height: 40px;
}
.img-show-pw {
    fill: none;
    stroke: var(--fg);
    stroke-width: 2px;
}
.inp-show-pw {
    background: none;
    outline: none;
    border: none;
    width: 430px;
    color: var(--fg);
}
.inp-show-desc {
    background: none;
    outline: none;
    border: 2px solid var(--border);
    border-radius: 6px;
    width: 500px;
    min-height: 150px;
    color: var(--fg);
    text-align: start;
    text-anchor: start;
    height: auto;
}
.div-show-btn{
    margin-top: 30px;
}
.btn-show-back {
    background: none;
    border: 2px solid var(--border);
    border-radius: 15px;
    color: var(--fg);
    width: 100px;
    padding: 5px;
}
.btn-show-edit {
    background: var(--primary);
    border: 2px solid var(--primary);
    border-radius: 15px;
    color: var(--fg);
    width: 100px;
    padding: 5px;
    box-shadow: 0 0 12px var(--primary);
}

.btn-show-edit:hover {
    filter: brightness(1.2);
}
.btn-show-back:hover {
    background: var(--primary);
}

.auth-guard-overlay {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: grid;
    place-items: center;
    background: var(--bg);
    backdrop-filter: blur(6px);
}

.auth-guard-card {
    width: min(420px, 92vw);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 22px 20px;
    background: rgba(0,0,0,0.25);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.auth-guard-spinner {
    width: 34px;
    height: 34px;
    border-radius: 999px;
    border: 3px solid rgba(255,255,255,0.25);
    border-top-color: #D3D3D3;
    animation: authspin 0.8s linear infinite;
}
.auth-guard-title {
    font-weight: 700;
}

.auth-guard-sub {
    font-size: 13px;
    opacity: .8;
    text-align: center;
}
@keyframes authspin {
    to {
        transform: rotate(360deg);
    }
}
.auth-guard-logo {
    width: 142px;
    height: 142px;
    object-fit: contain; /* wichtig bei PNG */
}
.btn-add-fav{
    margin-left: 5px;
    background: none;
    border: none;
}
.img-edit-fav {
    stroke: var(--fg);
    stroke-width: 1.5px;
}
.img-edit-pwgen {
    stroke: var(--fg);
    fill: none;
    stroke-width: 1.5px;
    align-content: center;
}

.overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    display: grid;
    place-items: center;
    z-index: 9999;
}

.modal {
    width: min(520px, 92vw);
    background: #111;
    color: #fff;
    border: 1px solid rgba(255,255,255,.12);
    border-radius: 16px;
    padding: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,.6);
}
.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}
.icon-btn {
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
}
.gen .row {
    display: flex;
    gap: 10px;
    margin-top: 12px;
}
.gen .pw {
    flex: 1;
}
.dot-spinner {
    margin-top: 20px;
    display: flex;
    gap: 6px;
}
    .dot-spinner span {
        width: 10px;
        height: 10px;
        background: darkcyan; /* Farbe aapasse */
        border-radius: 50%;
        animation: bounce 1.4s infinite ease-in-out both;
    }
        .dot-spinner span:nth-child(1) {
            animation-delay: -0.32s;
        }

        .dot-spinner span:nth-child(2) {
            animation-delay: -0.16s;
        }
@keyframes bounce {
    0%, 80%, 100% {
        transform: scale(0);
        opacity: 0.3;
    }

    40% {
        transform: scale(1);
        opacity: 1;
    }
}
.add-error {
    margin-top: 10px;
    color: var(--fg);
    text-align: left;
    font-size: 0.9rem;
}
.btn-edit-del {
    margin-left: 190px;
    background: red;
    border: 2px solid red;
    border-radius: 15px;
    color: var(--fg);
    width: 100px;
    padding: 5px;
    box-shadow: 0 0 12px rgba(255, 0, 0, 0.81);
}
.btn-edit-del:hover {
    filter: brightness(0.8);
}
.nav-ico{
    width: 30px;
    height: 30px;
    vertical-align: middle;
    align-self: start;
    margin-right: 10px;
}
    .nav-ico-svg {
        fill: var(--fg);
        vertical-align:  baseline;
    }
.nav-ico-svg-s {
    stroke: var(--fg);
    fill: none;
    stroke-width: 1.5px;
    vertical-align: baseline;
}
.nav-ico-svg-set {
    fill: var(--fg);
    vertical-align: baseline;
}
.nav-line {
    height: 2px;
    background: var(--fg);
    margin: 0 10px 8px 10px;
}
.pw-ico.is-fav {
    fill: darkcyan;
}
.copy-tooltip {
    position: fixed;
    z-index: 9999;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 8px;
    background: rgba(0, 120, 120, 0.95);
    color: var(--fg);
    pointer-events: none;
    transform: translate(10px, 10px);
    transition: opacity 0.15s ease, transform 0.15s ease;
}

    .copy-tooltip.hidden {
        opacity: 0;
    }

    .copy-tooltip.show {
        opacity: 1;
    }
.pw-tooltip {
    position: fixed;
    z-index: 10000;
    padding: 8px 12px;
    font-size: 13px;
    border-radius: 8px;
    background: #4A5454;
    color: #fff;
    max-width: auto;
    word-break: break-all;
    box-shadow: 0 8px 30px rgba(0,0,0,.35);
}

    .pw-tooltip.hidden {
        display: none;
    }
.pwgen-border {
    margin-top: 30px;
    border: 4px solid #4A5454;
    border-radius: 15px;
    width: fit-content;
}
.btn-pwgen-copy{
    background: none;
    width: 40px;
    height: 40px;
    border: none;
    fill: none;
}
.btn-pwgen-refresh {
    background: none;
    width: 40px;
    height: 40px;
    border: none;
    fill: none;
}
.pwgen-svg-refresh {
    stroke: var(--fg);
    stroke-width: 1.5px;
    text-align: start;
}
.pwgen-svg-copy {
    fill: var(--fg)
}
.pwgen-pw{
    width: 450px;
    background: none;
    border: none;
    outline: none;
    color: var(--fg);
    font-size: 15px;
    height: auto;
}
.pwgen-slieder {
    width: 450px;
    -webkit-appearance: none;
    appearance: none;
    background: transparent;
    cursor: pointer;
}

    /* Track */
.pwgen-slieder::-webkit-slider-runnable-track {
    height: 6px;
    border-radius: 9px;
    background: #5a5a5a;
}

.pwgen-slieder::-moz-range-track {
    height: 6px;
    border-radius: 999px;
    background: red;
}

    /* Gefüllter Teil (Firefox only, aber ok) */
.pwgen-slieder::-moz-range-progress {
    height: 6px;
    border-radius: 999px;
    background: darkcyan;
}

    /* Thumb */
    .pwgen-slieder::-webkit-slider-thumb {
        -webkit-appearance: none;
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: darkcyan;
        border: 2px solid #5a5a5a;
        margin-top: -5px;
    }

    .pwgen-slieder::-moz-range-thumb {
        width: 16px;
        height: 16px;
        border-radius: 50%;
        background: #7a7a7a;
        border: 2px solid #2b2b2b;
    }
.div-slieder-pwgen {
    display: flex;
    flex-direction: row;
    margin-top: 10px;
}
.txt-long-pwgen{
    background: none;
    border: none;
    outline: none;
    font-size: 19px;
    color: var(--fg);
    width: 100px;
}
.div-cb-pwgen{
    display: flex;
    flex-direction: row;
    margin-top: 15px;
    vertical-align: central;
    gap: 5px;
}
.pwgen-span{
    margin-right: 10px;
}
.pg-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.55);
    z-index: 10000;
}

.pg-modal {
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: min(680px, calc(100vw - 24px));
    border-radius: 14px;
    border: 2px solid darkcyan;
    background: rgba(28,28,28,.98);
    z-index: 10001;
    box-shadow: 0 25px 70px rgba(0,0,0,.60);
}

.pg-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    font-size: 22px;
    font-weight: 700;
}

.pg-close {
    background: transparent;
    border: none;
    font-size: 26px;
    color: #ddd;
    cursor: pointer;
}

.pg-body {
    padding: 10px 18px 18px;
}

.pg-output {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 8px 0 14px;
}

.pg-out-input {
    flex: 1;
    padding: 10px 12px;
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.25);
    color: #eee;
    font-weight: 700;
}

.pg-ico-btn {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.12);
    background: rgba(0,0,0,0.18);
    cursor: pointer;
}

.pg-ico {
    width: 22px;
    height: 22px;
    fill: #ddd;
}

.pg-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 14px;
}

.pg-label {
    font-size: 18px;
    color: #ddd;
}

.pg-slider {
    width: 100%;
    accent-color: darkcyan; /* 🔥 super simpel */
}

.pg-checks {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 16px;
    color: #ddd;
}

.pg-check {
    display: flex;
    align-items: center;
    gap: 8px;
}

    .pg-check input {
        accent-color: darkcyan;
    }

.pg-actions {
    display: flex;
    justify-content: center;
}

.pg-use-btn {
    padding: 10px 18px;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,0.25);
    background: darkcyan;
    color: var(--fg);
    font-weight: 700;
    cursor: pointer;
}
.nav-logo{
    width: 80px;
    height: 80px;
    background: none
}
.nav-user{
    text-align: left;
    background: none;
    align-content: center;
    font-size: 25px;
    font-weight: bold
}
.nav-page {
    background: var(--main);
    display: flex;
    flex-direction: row;
}
.set-border-userdata {
    margin-top: 10px;
    display: flex;
    flex-direction: row;
    padding: 10px;
    border: 4px solid #4A5454;
    border-radius: 15px;
    display: flex;
    flex-direction: row;
}
.set-user-1 {
    background: none;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    border-radius: 15px;
    align-self: center;
}
.set-label{
    align-self: start;
    background: none;
    margin-bottom: 5px;
}
.set-inp{
    margin-left: 20px;
    background: none;
    border: 2px solid var(--border);
    border-radius: 9px;
    outline: none;
    color: var(--fg);
    font-size: 15px
}
.set-user-2{
    display: flex;
    flex-direction: column;
    justify-content: right;
    margin-left: auto;
}
.set-btn {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    fill: var(--fg);
}
.set-btn-s {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    stroke: var(--fg);
    stroke-width: 1.5px;
    fill: none;
}
.set-2-1{
    gap: 10px;
    display: flex;
    flex-direction: column;
}
.set-2-2 {
    margin-left: 15px;
    gap: 10px;
    display: flex;
    flex-direction: column;
}
.set-combo {
    padding: 3px;
    border-radius: 9px;
    background: var(--main);
    color: var(--fg);
    border: 2px solid var(--border);
    outline: none;
    cursor: not-allowed
}
.set-switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}
    .set-switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }
.set-slieder {
    position: absolute;
    inset: 0;
    background: var(--main);
    border: var(--main);
    border-radius: 999px;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease;
}
    .set-slieder:before {
        content: "";
        position: absolute;
        height: 18px;
        width: 18px;
        left: 2px;
        top: 50%;
        transform: translateY(-50%);
        background: var(--bg);
        border-radius: 50%;
        transition: transform .15s ease;
    }
.set-switch input:checked + .set-slieder {
    background: var(--primary); /* darkcyan vibe */
    border-color: var(--primary);
}
    .set-switch input:checked + .set-slieder:before {
        transform: translate(22px, -50%);
        background: var(--bg);
    }
.set-bc {
    color: var(--primary);
    font-weight: bold;
    vertical-align: bottom;
}
    .set-2-3{
        display: flex;
        flex-direction: column;
        align-self: end;
    }
    .set-3-1{
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
.set-btn-1 {
    background: none;
    border: 2px solid var(--border);
    border-radius: 15px;
    color: var(--fg);
    padding: 5px;
}
.set-btn-2 {
    background: red;
    border: 2px solid red;
    border-radius: 15px;
    color: var(--fg);
    padding: 5px;
    box-shadow: 0 0 12px red;
}
    .set-btn-2:hover {
        filter: brightness(0.8);
    }
.set-btn-1:hover {
    background: var(--primary);
}
    .new-page{
        display: flex;
        flex-direction: column;
        align-items: center;
    }
.new-svg-s {
    fill: none;
    stroke: var(--fg);
    width: 40px;
    height: 40px;
}
.new-lpw {
    align-items: end;
    display: flex;
    gap: 15px;
}
.new-border {
    margin-top: 20px;
    border: 2px solid var(--border);
    border-radius: 15px;
    padding: 6px;
}
.new-txt-lpw{
    background: none;
    outline: none;
    border: none;
    width: 400px;
    color: var(--fg);
}
.new-btn-show{
    background: none;
    border: none;
}
.new-svg {
    fill: none;
    stroke: var(--fg);
    stroke-width: 1px;
    width: 25px;
    height: 25px;
    border: none;
}
.new-set {
    margin-top: 20px;
    border: 2px solid #4A5454;
    border-radius: 9px;
    padding: 15px;
}
.new-btn-ok {
    color: var(--fg);
    font-size: 20px;
    margin-top: 15px;
    border: darkcyan;
    padding: 6px;
    background: darkcyan;
    border-radius: 15px;
    box-shadow: 0 0 12px darkcyan;
}
    .new-btn-ok:hover {
        filter: brightness(1.2);
    }
    .new-label{
        margin-left: 20px;
    }
.rc-404 {
    min-height: calc(100vh - 56px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    position: relative;
    background: radial-gradient(1000px 500px at 30% 20%, rgba(0,139,139,.20), transparent 60%), radial-gradient(900px 450px at 70% 80%, rgba(0,139,139,.12), transparent 55%);
}

.rc-404-card {
    width: min(760px, 100%);
    border-radius: 18px;
    border: 2px solid rgba(0,139,139,.55);
    background: rgba(18,18,18,.92);
    box-shadow: 0 30px 80px rgba(0,0,0,.55);
    padding: 22px 22px 18px;
    position: relative;
    z-index: 2;
}

.rc-404-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    letter-spacing: .3px;
    color: #dff;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(0,139,139,.18);
    border: 1px solid rgba(0,139,139,.35);
}

.rc-404-title {
    margin: 14px 0 6px;
    font-size: 84px;
    line-height: 1;
    letter-spacing: 1px;
    color: #f2f2f2;
}

.rc-404-text {
    margin: 0 0 16px;
    color: rgba(255,255,255,.78);
    font-size: 16px;
    line-height: 1.5;
    max-width: 62ch;
}

.rc-404-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 8px 0 14px;
}

.rc-btn {
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    color: #eee;
    font-weight: 700;
    cursor: pointer;
}

    .rc-btn:hover {
        background: rgba(255,255,255,.09);
    }

.rc-btn-primary {
    background: rgba(0,139,139,.95);
    border-color: rgba(0,139,139,.95);
    color: #061010;
}

    .rc-btn-primary:hover {
        background: rgba(0,139,139,1);
    }

.rc-404-hint {
    color: rgba(255,255,255,.55);
    font-size: 13px;
    padding-top: 6px;
    border-top: 1px solid rgba(255,255,255,.08);
}

.rc-404-glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .8;
    z-index: 1;
}
.set-change-verify{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0px;
}
.set-change-verify-lpw{
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    gap: 10px;
}
.set-change-verify-svg {
    width: 40px;
    height: 40px;
    stroke: var(--fg);
    fill: none;
}
.set-change-verify-border {
    border: 2px solid var(--fg);
    border-radius: 15px;
    padding: 3px;
}
.set-change-verify-inp {
    background: none;
    border: none;
    outline: none;
    color: var(--fg);
    width: 400px;
}
.set-change-verify-btn {
    background: none;
    border: none;
    width: 40px;
    height: 40px;
}
.set-change-verify-svg2 {
    width: 30px;
    height: 30px;
    stroke: var(--fg);
    fill: none;
}
.set-change-verify-btnok {
    margin-top: 20px;
    background: darkcyan;
    border: 2px solid darkcyan;
    border-radius: 15px;
    font-size: 20px;
    color: var(--fg);
    padding: 6px;
    box-shadow: 0 0 12px darkcyan;
}
.set-change-verify-btnok:hover {
    filter: brightness(1.2);
}
.set-change-verify-btnback {
    margin-right: 10px;
    padding: 6px;
    margin-top: 20px;
    background: none;
    border: 2px solid var(--border);
    border-radius: 15px;
    font-size: 20px;
    color: var(--fg);
}

    .set-change-verify-btnback:hover {
        background: darkcyan;
    }
.set-change-user {
    background: none;
    outline: none;
    border: 2px solid white;
    border-radius: 15px;
    color: var(--fg);
    height: 50px;
}
.set-change{
    display: flex;
    flex-direction: column;
    width: fit-content;
}
.set-change-name{
    margin-top: 10px;
}
.tfa-activate-page{
    display: flex;
    flex-direction: column;
    align-items: center;
}
.tfa-activate-img{
    width: 250px;
    height: 250px;
    background: none;
    border: 5px solid darkcyan;
    border-radius: 15px;
    margin-top: 20px;
}
.tfa-active-inp {
    margin-top: 10px;
    border: 2px solid white;
    background: none;
    color: darkcyan;
    font-weight: bold;
    padding: 3px;
    border-radius: 9px;
    text-align: center;
    width: 350px;
}
.tfa-activate-inp1{
    margin-top: 20px;
    margin-bottom: 10px;
}
.tfa-code-input1 {
    flex: 0;
    border-radius: 15px;
    border: 3px solid #ffffff;
    background: transparent;
    padding: 6px 14px;
    color: darkcyan;
    outline: none;
    font-size: 20px;
    text-align: center;
    font-weight: bold;
    width: 200px

}
.tfa-code-input1:focus {
    border-color: darkcyan;
}
.tfa-activate-backup{
    background: none;
    color: darkcyan;
    font-size: 20px;
    border: none;
    outline: none;
    text-align: center;

}
.tfa-activate-backup2{
    display: flex;
    flex-direction: column;
}
.tfa-activate-backup1{
    margin-top: 20px;
    display: flex;
    flex-direction: row;
    padding: 6px;
    border-radius: 15px;
    border: 2px solid white;
}
.btn-tfa-backup{
    margin-top: 5px;
    background: none;
    color: darkcyan;
    border: none;
}