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

body {
    width: 100%;
    height: 100vh;
    margin: 0;

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

    background: url("/images/bgimg.jpg") no-repeat center center;
    background-size: cover;
}

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

.left {
    text-align: center;

    opacity: 1;
    flex: 1;
}

body > div.right {
    display: none;
}

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

.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 {
    width: var(--logo-size);
}

.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;

    display: flex;
    justify-content: center;
    align-items: center;
}

.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;
}