/* https://www.w3schools.com/cssref/css_units.php */
html {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari, Chrome, Opera */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by all modern browsers */
    cursor: default; /* Optional: keeps the cursor from changing to a text-selection cursor */
}
body {
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    /* background-color: rgb(217, 217, 217); */
    background-color: white;
    overflow: hidden;
    font-family: Calibri;
    color: rgb(0, 0, 0);
    z-index: 0;
}


hr {
    margin-top: 18px;
    margin-bottom: 18px;
}

.background {
    width: 100dvw;
    height: 100dvh;
    position: fixed;
    inset: 0;
    background: url("bkg1.png") center / cover no-repeat;
    filter: blur(15px);
    transform: scale(1.1);
    z-index: -1;
}

.init-hidden {
    display: none;
}

.shadow {
    /* box-shadow: offset-x offset-y blur-radius spread color; */
    /* box-shadow: 3px 3px 6.7px 11px rgba(0, 0, 0, 0.2); */
    box-shadow: 4px 4px 15px rgba(0, 0, 0, 0.4);

}

.center-text {
    /* this goes on the parent not the children */
    text-align: center;
}

.center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.box {
    border: 5.5px;
    border-radius: 5px;
    border-style: solid;
    /*     padding-left: 15px;
    padding-right: 15px; */
    padding: 10px;
    background-color: #fafafa;
    filter: opacity(0.85)
}

.box h2 {
    margin-top: 0;
    margin-bottom: 0;
}

.box-red {
    border-color: rgb(255, 46, 46);
}

.box-lightyellow {
    border-color: rgb(255, 239, 61);
}

.box-blue {
    border-color: rgb(57, 179, 255);
}

.box-arras {
    border-color: #8ebc48;
}

.box-discord {
    border-color: #5865F2;
}

#authInput {
    width: 40%;
    height: 100%;
}



.switch {
    position: relative;
    display: inline-block;
    width: 45px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ff5757;
    -webkit-transition: 0.33s;
    transition: 0.33s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: rgb(255, 255, 255);
    -webkit-transition: .8s;
    transition: .8s;
}

input:checked+.slider {
    background-color: #57ff5f;
}

input:focus+.slider {
    box-shadow: 0 0 1px rgb(0, 0, 0);
}

input:checked+.slider:before {
    -webkit-transform: translateX(22px);
    -ms-transform: translateX(22px);
    transform: translateX(22px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 24px;
}

.slider.round:before {
    border-radius: 50%;
}

.switch-label {
    line-height: 100%;
    glyph-orientation-vertical: middle;
}

.input-container {
    display: flex;
    /* Enable Flexbox */
    align-items: center;
    /* Vertically center children */
    gap: 10px;
    margin: 6px;
}


#columnContainer {
    /* Setup multi-column layout */
    column-count: 3;
    column-width: 160px;
    /* Adjust based on your content */
    column-gap: 20px;
    height: 70dvh;
    /* Fixed height to enable vertical wrapping */

    /* Better alignment for spans */
    display: block;
    width: 70dvw;
    height: 70dvh;
}