/*@import url('https://fonts.googleapis.com/css2?family=Gudea:wght@400;700&family=Viga&display=swap');*/

@import url('https://fonts.googleapis.com/css2?family=Inter&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Viga&display=swap');
* {
    transition: 0.3s ease-in-out;
}

body,
html {
    margin: 0;
    padding: 0;
    background-color: #000212;
    /*background: linear-gradient(to top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.03));*/
    font-family: 'Inter', sans-serif;
    overflow: hidden;
}

.image_carousel * {
    user-select: none !important;
    user-drag: none !important;
    pointer-events: none;
}

.viga {
    font-family: 'Viga', sans-serif;
    text-transform: uppercase;
}

.welcome_back {
    color: rgba(255, 255, 255, 0.65);
    font-size: 24px;
    width: 100%;
    top: 28%;
    text-transform: uppercase;
    text-align: center;
    margin: 0 0 20px;
    z-index: 100;
    font-family: 'Viga', sans-serif;
    font-weight: 100;
    text-shadow: 0 0 20px rgb(0 0 0 / 20%);
    opacity: 0;
}

.username {
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 100%;
}

.image_carousel {
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
}

.image_carousel .image {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 99;
    display: none;
    animation: fadeIn 1s ease-in-out;
    flex-direction: row;
}

.image_carousel.fadeOut {
    animation: fadeOut 0.5s ease-out;
    animation-fill-mode: both;
}

.image_carousel .image img {
    width: 125vw;
    height: 125vw;
    opacity: 0.5;
    filter: blur(100px);
    /* animation: spin 30s linear infinite; */
    position: absolute;
    top: -50vw;
    left: -50vw;
    border-radius: 999px;
}

.image_carousel .image img:nth-child(2) {
    right: -50vw;
    bottom: -50vw;
    top: unset !important;
    left: unset !important;
    /* animation: spin 30s linear infinite reverse; */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.image_carousel .image.selected {
    display: flex !important;
}

.image_carousel_logoContainer {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 18px;
    z-index: 100;
}

.image_carousel .image_carousel_logoContainer .image_carousel_logo {
    width: 30px;
    height: 50px;
    background: url('../imgs/LogoWhite.png') no-repeat;
    background-size: 31px;
    mix-blend-mode: overlay;
    display: inline-block;
}

.image_carousel .image_carousel_logoContainer .viga {
    color: white;
    text-transform: uppercase;
    display: inline-block;
    vertical-align: top;
    margin: 10px 15px;
    font-size: 24px;
}

.image_carousel .image_carousel_credits {
    position: absolute;
    bottom: 0;
    right: 0;
    margin: 0 20px 22px;
    color: rgb(255, 255, 255);
    z-index: 100;
    text-align: right;
    animation: fadeIn 1s ease-in-out;
}

.image_carousel .image_carousel_credits.left {
    position: absolute;
    bottom: 0;
    left: 0;
    margin: 0 20px 22px;
    color: rgb(255, 255, 255);
    z-index: 100;
    text-align: left;
}

.image_carousel .image_carousel_credits span {
    display: block;
    text-transform: uppercase;
    text-shadow: 0 0 20px rgba(0, 0, 0, 0.12);
}

.image_carousel .image_carousel_credits span:last-child {
    color: rgba(255, 255, 255, 0.65);
}

.image_carousel .image_carousel_indicators {
    width: fit-content;
    height: 50px;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    z-index: 100;
    display: none;
}

.image_carousel .image_carousel_indicators .image_carousel_indicator {
    width: 120px;
    height: 5px;
    background: rgba(255, 255, 255, 0.24);
    backdrop-filter: blur(50px) saturate(130%);
    -webkit-backdrop-filter: blur(50px) saturate(130%);
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
    display: inline-block;
    vertical-align: top;
    transition: all .63s ease-in-out;
    margin-right: -3px !important;
    user-select: auto !important;
    user-drag: auto !important;
    pointer-events: auto !important;
}

.image_carousel .image_carousel_indicators .image_carousel_indicator:hover {
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
}

.image_carousel .image_carousel_indicators .image_carousel_indicator.selected {
    background: rgba(255, 255, 255, 0.75);
}

.image_carousel .image_carousel_indicators .image_carousel_indicator:first-child {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
}

.image_carousel .image_carousel_indicators .image_carousel_indicator:last-child {
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
}

.login_container {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 100;
    color: rgba(255, 255, 255, 0.65);
    width: 90%;
}

.login_container .login_box {
    width: 100%;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(50px) saturate(130%);
    -webkit-backdrop-filter: blur(50px) saturate(130%);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1), 0 0 20px rgba(0, 0, 0, .1);
    margin-top: 20px;
    position: relative;
    overflow: hidden;
    margin: 0 auto;
}

.login_container .login_box .p-2 {
    padding: 20px;
}

.login_container .login_box input[type="text"], .login_container .login_box input[type="password"] {
    width: 100%;
    appearance: none !important;
    border: none !important;
    outline: none !important;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 10px 14px;
    color: white;
    font-family: 'Inter', sans-serif;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .1);
    font-size: 16px;
    margin-top: 4px;
}

.login_container .login_box .button-group {
    padding: 12px;
    background: rgba(255, 255, 255, .05);
    margin-left: 1px;
    width: calc(100% - 25px);
}

.login_container .login_box button {
    width: 100%;
    appearance: none !important;
    border: none !important;
    outline: none !important;
    background: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 20px rgba(0, 0, 0, .23);
    border-radius: 50px;
    padding: 10px 14px;
    color: white;
    font-family: 'Inter', sans-serif;
    text-align: center;
    font-size: 14px;
    transition: all .3s ease-in-out;
}

.login_container .login_box button:hover {
    cursor: pointer;
    background: rgba(255, 255, 255, 0.35);
}

.login_container .login_box label {
    font-size: 14px;
    line-height: 30px;
    color: rgba(255, 255, 255, 0.85);
}

.login_container .login_box .form-group {
    padding: 13px;
    padding-top: 6px;
    padding-right: 40px;
}

.login_animation_active {
    animation: fill;
}

/* .discord_box {
    display: none;
} */

.discord_box .avatar {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    position: relative;
    display: inline-block;
}

.discord_box .avatar img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
}

.discord_box .avatar::after {
    position: absolute;
    content: ' ';
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 100%;
    box-shadow: inset 0 0 0 1.2px rgba(255, 255, 255, .23), inset 0 0 40px rgba(0, 0, 0, .3), 0 0 40px rgba(0, 0, 0, .33);
    z-index: 101;
}

.discord_box .avatar i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: -7px;
    text-shadow: 0 0 20px rgba(0, 0, 0, .2);
}

.discord_box .text {
    display: inline-block;
    vertical-align: top;
    width: calc(100% - 80px);
    text-align: center;
    margin-top: 8px;
}

.discord_box .text .viga {
    font-size: 18px;
}

.discord_box .text i {
    display: block;
    margin-top: 7px;
    font-size: 24px;
}

.login_animation_base .avatar {
    width: 150px;
    height: 150px;
    border-radius: 100%;
    position: relative;
    margin: 0 auto;
    background-color: black;
}

.login_animation_base .avatar img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
}

.login_animation_base .avatar::after {
    position: absolute;
    content: ' ';
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 100%;
    box-shadow: inset 0 0 0 1.2px rgba(255, 255, 255, .23), inset 0 0 40px rgba(0, 0, 0, .3), 0 0 40px rgba(0, 0, 0, .33);
    z-index: 101;
}

.login_animation_base .loader {
    text-align: center;
    margin-top: 29px;
    font-size: 26px;
    text-shadow: 0px 0px 10px rgb(0 0 0 / 30%);
}

.login_animation_base .loader .viga {
    display: block;
    margin-bottom: 20px;
}

.no-br {
    border-radius: 0px !important;
}

.mr-2 {
    margin-right: 6px;
}

.ui-pnotify-container {
    position: relative;
    color: #ffffff;
    border: none;
    border-radius: 7px;
    padding: 13px !important;
    -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.47) !important;
    -moz-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.47) !important;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.47) !important;
    -webkit-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.ui-pnotify-container::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: inherit;
    -webkit-box-shadow: inset 0 0 0 1.2px rgba(255, 255, 255, 0.2), inset 0 0 10px 2px rgba(0, 0, 0, 0.12);
    -moz-box-shadow: inset 0 0 0 1.2px rgba(255, 255, 255, 0.2), inset 0 0 10px 2px rgba(0, 0, 0, 0.12);
    box-shadow: inset 0 0 0 1.2px rgba(255, 255, 255, 0.2), inset 0 0 10px 2px rgba(0, 0, 0, 0.12);
    mix-blend-mode: overlay;
    pointer-events: none;
}

.ui-pnotify .ui-pnotify-icon {
    font-size: 16px;
}

.brighttheme-icon-stuck {
    display: none !important;
}

.ui-pnotify .ui-pnotify-title {
    font-size: 14px;
    font-family: 'Viga', sans-serif;
    font-weight: 300;
    text-transform: uppercase;
}

.ui-pnotify .ui-pnotify-text {
    font-size: 13px;
}

.brighttheme-error {
    background: rgba(133, 29, 44, 0.7) !important;
}

.brighttheme-success {
    background: rgba(52, 129, 59, 0.7) !important;
}

.brighttheme-info {
    background: rgba(27, 93, 159, 0.7) !important;
}

.brighttheme-notice {
    background: rgba(133, 94, 27, 0.7) !important;
}

@media (min-width: 460px) {
    .login_container .login_box {
        width: 450px !important;
    }
    .login_container {
        width: auto !important;
    }
}

@media (min-width: 1000px) {
    .image_carousel .image_carousel_indicators {
        display: block;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes startKeyframe {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes startTextKeyframe {
    0% {
        transform: translateY(105%);
        opacity: 0;
    }
    100% {
        transform: translateY(0%);
        opacity: 1 !important;
    }
}

.startAnim {
    animation: startKeyframe cubic-bezier(1, .99, .16, .88) 1s;
}

.textAnim {
    animation: startTextKeyframe cubic-bezier(.18, .89, .32, 1.28) 0.5s forwards;
    animation-fill-mode: both;
    opacity: 1;
}

@keyframes exitLogin {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

.exitLoginAnim {
    animation: exitLogin cubic-bezier(1, .99, .16, .88) 0.5s;
    animation-fill-mode: both;
}

.welcome_back.exitLoginAnim {
    animation: fadeOut ease 0.2s forwards;
}

@keyframes successKeyframe {
    0% {
        transform: scale(0.8);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.login_animation_active {
    animation: successKeyframe cubic-bezier(1, .99, .16, .88) 0.5s;
}

.login_animation_end {
    animation: fadeOut ease 0.2s forwards;
}

.hidden {
    display: none;
}

@keyframes failedAuthentication {
    0% {
        filter: grayscale(0%) blur(100px) !important;
        opacity: 0.5;
    }
    10% {
        filter: grayscale(100%) blur(100px) !important;
        opacity: 0.1;
    }
    100% {
        filter: grayscale(0%) blur(100px) !important;
        opacity: 0.5;
    }
}

.failedAuth {
    animation: failedAuthentication ease 2s !important;
}

.d-flex {
    display: flex;
}

.flex-center {
    justify-content: center;
}

::placeholder {
    color: #ffffff38;
}

.codeBox {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 10px;
}

input[type="number"] {
    width: 0.86em;
    line-height: 1;
    margin: 0.1em;
    padding: 8px 0 4px;
    font-size: 40px;
    background: rgba(255, 255, 255, 0.15);
    color: white;
    appearance: textfield;
    -webkit-appearance: textfield;
    border: 0;
    text-align: center;
    border-radius: 6px;
    -webkit-box-shadow: inset 0 0 0 1px rgb(255 255 255 / 10%), 0px 5px 20px 20px rgb(0 0 0 / 4%);
            box-shadow: inset 0 0 0 1px rgb(255 255 255 / 10%), 0px 5px 20px 20px rgb(0 0 0 / 4%);
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.code_box .avatar {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    position: relative;
    flex-shrink: 0;
}

.code_box .avatar img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
}

@media screen and (max-width: 450px) {
    .code_box .avatar {
        display: none;
    }
}

.code_box .avatar::after {
    position: absolute;
    content: ' ';
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 100%;
    box-shadow: inset 0 0 0 1.2px rgba(255, 255, 255, .23), inset 0 0 40px rgba(0, 0, 0, .3), 0 0 40px rgba(0, 0, 0, .33);
    z-index: 101;
}

.code_box .avatar i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: -7px;
    text-shadow: 0 0 20px rgba(0, 0, 0, .2);
}

.code_box .text {
    vertical-align: top;
    width: 100%;
    text-align: center;
    margin-top: 8px;
}

.code_box .text .viga {
    font-size: 18px;
}

.code_box .text i {
    display: block;
    margin-top: 7px;
    font-size: 24px;
}

.qr-code {
    max-height: 60%;
    max-width: 60%;
    -webkit-box-shadow: inset 0 0 0 1px rgb(255 255 255 / 10%), 0px 5px 20px 20px rgb(0 0 0 / 4%);
    box-shadow: inset 0 0 0 1px rgb(255 255 255 / 10%), 0px 5px 20px 20px rgb(0 0 0 / 4%);
    padding: 10px;
    border-radius: 7px;
}

.setup_box .avatar {
    width: 70px;
    height: 70px;
    border-radius: 100%;
    position: relative;
    flex-shrink: 0;
}

.setup_box .avatar img {
    width: 100%;
    height: 100%;
    border-radius: 100%;
}

@media screen and (max-width: 450px) {
    .setup_box .avatar {
        display: none;
    }
}

.setup_box .avatar::after {
    position: absolute;
    content: ' ';
    display: block;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 100%;
    box-shadow: inset 0 0 0 1.2px rgba(255, 255, 255, .23), inset 0 0 40px rgba(0, 0, 0, .3), 0 0 40px rgba(0, 0, 0, .33);
    z-index: 101;
}

.setup_box .avatar i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: -7px;
    text-shadow: 0 0 20px rgba(0, 0, 0, .2);
}

.setup_box .text {
    vertical-align: top;
    width: 100%;
    text-align: center;
    margin-top: 8px;
}

.setup_box .text .viga {
    font-size: 18px;
}

.setup_box .text i {
    display: block;
    margin-top: 7px;
    font-size: 24px;
}

.muted-link {
    color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    margin-top: 1em;
    text-decoration: underline;
    font-size: 80%;
}