@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


body {
    overflow: hidden;
    /*position: fixed;*/
    width: 100%;

    height: 100dvh;
    margin: 0;

    background-color: rgb(9, 9, 11);
}

body {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    /*gap: 15px;*/
}

.left {
    /*position: absolute;*/
    /*left: 22%;*/
    /*top: 50%;*/

    height: 141px;

    text-align: center;

    /*transform: translate(-50%, -50%);*/

    opacity: 1;
    /*display: none;*/
    flex: 1;
}

.right {
    background: url("/images/bgimg.jpg") no-repeat center center;
    background-size: cover;
    height: 100dvh;
    border-bottom-left-radius: 75px;
    border-top-left-radius: 75px;
    flex: 1.5;
}

* {
    color: white !important;
    font-family: "Roboto", sans-serif !important;
    font-optical-sizing: auto !important;
}

:root {
    --height: 35px;
    --size: 150px;
    --animation-time: 1.6s;
    --logo-size: 70px;
}

#error {
    background: rgba(250, 101, 101, 0.18);
    border-radius: 16px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 1, 1, 0.32);

    margin-left: 5% !important;
    margin-right: 5% !important;

    text-align: center;
    padding: 10px;
}

.error {
    transition: var(--animation-time);
    width: 7.5%;
    height: auto;

    opacity: 1;

    position: absolute;
    top: 50%;
    right: 15px;

    z-index: 2;

    transform: translateY(-50%);
}

.logo-box {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 15%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.32);

    margin-left: 50%;
    transform: translate(-50%, 0);

    height: calc(var(--logo-size) + var(--logo-size) / 3);
    width: calc(var(--logo-size) + var(--logo-size) / 3);
    margin-bottom: 5px;
    position: relative;

    transition: margin-bottom 1s ease-in-out;
}

.logo-box.move {
    transform: translate(-50%, 0);
}

.authenticate.move {
    transform: translate(0, 60px);
}

.logo {
    margin-left: 50%;
    margin-right: 50%;
    margin-top: 50%;

    width: var(--logo-size);

    transform: translate(-50%, -50%);
}

.glass-box {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 15%;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.32);

    height: calc(var(--logo-size) + var(--logo-size) / 3);
    width: calc(var(--logo-size) + var(--logo-size) / 3);

    flex: none;
}

.glass-box.shake {
    animation: shake 0.4s ease-in-out !important;
}

.top-logos {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;

    gap: 15px;
}

.top-logos.animate > .glass-box.left {
    transform: translate(130px);
    animation: var(--animation-time) connect-to-right ease-in;
}

.top-logos.animate > .glass-box.right {
    transform: translate(-130px);
    animation: var(--animation-time) connect-to-left ease-in;
}

.top-logos.animate > .swirly {
    opacity: 0;
}

.glass-box.hidden {
    opacity: 0;
    transition: 0.6s opacity;
}

.logo.hidden {
    opacity: 0;
}

.logo.visible {
    opacity: 1;
    transition: 0.6s opacity;
}

@keyframes connect-to-right {
    0% {
        transform: translate(0);
    }

    100% {
        transform: translate(130px);
    }
}

@keyframes connect-to-left {
    0% {
        transform: translate(0);
    }

    100% {
        transform: translate(-130px);
    }
}

.display-box {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}

.swirly {
    height: 50px;

    shape-rendering: geometricPrecision;
    text-rendering: optimizeLegibility;
    image-rendering: auto;
}

@keyframes shake {
    0% { transform: translateX(0); }
    20% { transform: translateX(-15%); }
    40% { transform: translateX(15%); }
    60% { transform: translateX(-15%); }
    80% { transform: translateX(15%); }
    100% { transform: translateX(0%); }
}

.popup {
    display: none;

    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 10px;
    border-radius: 5px;
}

.header-tekst {
    margin-top: 8px !important;
    margin-bottom: 0;
}

.tekst {
    margin-top: 0;
    margin-bottom: 0;
}

.checkbox-wrapper-2.hidden {
    opacity: 0;
    transition: 0.6s opacity;
}

button {
    background: rgba(255, 255, 255, 0.18);
    border-radius: 10px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(9.9px);
    -webkit-backdrop-filter: blur(9.9px);
    border: 1px solid rgba(255, 255, 255, 0.32);

    height: var(--height);
    width: var(--size);

    z-index: 9999 !important;
    cursor: pointer;
}

button:disabled {
    opacity: 0;
    transition: 0.6s opacity;
}

button:enabled {
    opacity: 1;
    transition: 0.6s opacity;
}