body {
    font-family: "Segoe UI", Arial, sans-serif;
}
[data-theme="dark"] input::placeholder,
[data-theme="dark"] textarea::placeholder {
    color: rgba(255, 255, 255, 0.55);
}

/* Safari */
[data-theme="dark"] input::-webkit-input-placeholder,
[data-theme="dark"] textarea::-webkit-input-placeholder {
    color: rgba(255, 255, 255, 0.55);
}

/* Light Mode */
[data-theme="light"] input::placeholder,
[data-theme="light"] textarea::placeholder {
    color: rgba(0, 0, 0, 0.55);
}

/* Safari */
[data-theme="light"] input::-webkit-input-placeholder,
[data-theme="light"] textarea::-webkit-input-placeholder {
    color: rgba(0, 0, 0, 0.55);
}
@keyframes authspin {
    to {
        transform: rotate(360deg);
    }
}
.spinner {
    margin-top: 10px;
    display: flex;
    align-self: center;
    width: 50px;
    height: 50px;
    border-radius: 999px;
    border: 5px solid var(--bg);
    border-top-color: var(--primary);
    animation: authspin 0.8s linear infinite;
}
.combo {
    margin-left: auto;
    padding: 5px;
    font-size: 18px;
    border-radius: 9px;
    background: var(--main);
    color: var(--fg);
    border: 2px solid var(--main);
    outline: none;
    box-shadow: 0 0 8px black;
}
.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;
}

    .checkbox::before {
        content: "";
        width: 8px;
        height: 8px;
        border-radius: 50%;
        transform: scale(0);
        transition: transform 0.15s ease-in-out;
        background: #00bcd4;
    }

    .checkbox:checked::before {
        transform: scale(1);
    }
.switch {
    margin-left: auto;
    position: relative;
    display: inline-block;
    width: 70px;
    height: 35px;
}

    .switch input {
        opacity: 0;
        width: 0;
        height: 0;
    }
.slieder {
    position: absolute;
    inset: 0;
    background: var(--inp);
    border: var(--inp);
    border-radius: 999px;
    cursor: pointer;
    transition: background .15s ease, border-color .15s ease;
}

    .slieder:before {
        content: "";
        position: absolute;
        height: 25px;
        width: 25px;
        left: 2px;
        top: 50%;
        transform: translateY(-50%);
        background: var(--bg);
        border-radius: 50%;
        transition: transform .15s ease;
    }

        .switch input:checked + .slieder {
            background: var(--primary);
            border-color: var(--primary);
        }

            .switch input:checked + .slieder:before {
                transform: translate(40px, -50%);
                background: var(--bg);
            }
