body{
    user-select: none;
    overflow: hidden;
}

.log_inputs{
    background: none;
    outline: none;
    border: 1px solid rgb(60, 60, 60);
}

.log_klascode_btn{
    /* background-color: rgb(34, 103, 232); */
    background-color: rgb(232, 136, 34);
    border: none;
    font-size: 30px;
    transition: 300ms;
}

.log_klascode_btn:hover{
    /* background-color: blue; */
    background-color: orangered;
}

.log_inputs-parent{
    border: 1px solid rgb(60, 60, 60);
}

.log_inputs-parent input{
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    color: white !important;
}

.log_inputs-parent input::placeholder{
    color: gray;
}

.log_inputs-parent span{
    background: none;
    border: none;
    color: white;
}

.next_button{
    /* background-color: rgb(34, 103, 232); */
    background-color: rgb(232, 136, 34);
    border: none;
    font-size: 15px;
    transition: 300ms;
}

.next_button:hover{
    /* background-color: blue; */
    background-color: orangered;
}

.fly_page_text{
    /* color: rgb(116, 176, 255); */
    color: rgb(255, 162, 116);
    cursor: pointer;
    transition: 300ms;
}

.fly_page_text:hover{
    /* color: blue; */
    color: orangered;
}

.optionbuttons{
    /* background-color: rgb(34, 103, 232); */
    background-color: rgb(232, 136, 34);
    border: none;
    font-size: 13px;
    transition: 300ms;
}

.optionbuttons.active{
    /* background-color: blue; */
    background-color: rgb(255, 100, 0);
}

.optionbuttons:hover{
    /* background-color: blue; */
    background-color: rgb(255, 100, 0);
}

@keyframes shakeInput {
    0% {
        margin-left: 0rem;
    }
    25% {
        margin-left: 10px;
    }
    75% {
        margin-left: -10px;
    }
    100% {
        margin-left: 0rem;
    }
}

.log_inputs-parent.wrong {
    animation-name: shakeInput;
    animation-duration: .2s;  
    animation-delay: .1s;
    animation-iteration-count: 3;
    box-shadow: 0 0 0.6rem #ff0000;
}

.errorlog{
    color: red;
    font-size: 11px;
}

#register_parent, #login_parent {
    display: none;
    transition: left 0.5s ease, opacity 0.1s ease;
    opacity: 1;
}

#register_parent {
    left: 100%; /* Initial position */
}

#login_parent {
    left: 0; /* Initial position */
    display: block; /* Start with the login page visible */
    transition: 300ms;
}

#login_email{
    display: none;
}
#register_email{
    display: flex;
}

#register_email_parent{
    display: flex;
    flex-direction: column;
}

#canvasContainer{
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1; /* Zorgt ervoor dat het canvas op de achtergrond staat */
    opacity: 1;  /* Start met een volledige zichtbaarheid */
    transition: opacity 1s ease-out; /* Vloeiende overgang voor het fade-out effect */
}

#accesss,
#loading{
    position: relative;
    height: 100px;
    /* opacity: 0; */
}

#accesss span{
    display: inline-block;
    padding: 0 5px;
    font-size: 60px;
    font-weight: 600;
    color: orange;
}

#loading span {
    display: inline-block;
    padding: 0 5px;
    font-size: 60px;
    font-weight: 600;
    text-shadow: 0 0 15px #411;
    color: #411;
  }
#loading span.glow{
    color: #f00;
    text-shadow: 0px 0px 10px #f00;
}

#loading span.glow2{
    color: rgb(0, 255, 102);
    text-shadow: 0px 0px 10px rgb(0, 255, 64);
}

@keyframes lampLight {
    0% {
        opacity: 1;
    }
    5% {
        opacity: 0;
    }
    7% {
        opacity: 1;
    }
    13% {
        opacity: 0;
    }
    17% {
        opacity: 1;
    }
    27% {
        opacity: 0;
    }
    37% {
        opacity: 1;
    }
    47% {
        opacity: 0;
    }
    57% {
        opacity: 1;
    }
    100% {
        opacity: 1;
    }
}

.lamplight {
    animation-name: lampLight;
    animation-duration: 3s;  
    animation-delay: .1s;
    animation-fill-mode: forwards;
}


@keyframes opacity {
    50% {
        opacity: 0.5;
    }
}

.opacity-anim{
    animation-name: opacity;
    animation-duration: 1s;
    animation-delay: .5s;
    animation-iteration-count: infinite;
}

#cyberverseTxt{
    position: relative;
    width: 100vw;
    font-size: 70px;
    letter-spacing: 10px;
    text-transform: uppercase;
    transition: 300ms;
}

#cyberverseTxt > .bg-video {
    width: 1200px !important;
    transition: 300ms;
    opacity: 0;
}

#cyberverseTxt > .text {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    background-color: #000;
    color: #fff;
    font-weight: 700;
    font-size: 90px;
    padding-bottom: 100px;
    font-family: sans-serif;
    /* Mix Blend Mode does the all magic */
    mix-blend-mode: multiply;
    user-select: none;
}

#powerbytext{
    transition: 500ms;
    opacity: 0;
}

#second_tab{
    transition: 300ms;
    opacity: 0;
    pointer-events: none;
}