:root{
    --slide-account:-0vw;
}

#loader
{
    width:0;
    height:0;
    background: #650668;
    animation: blink 1s infinite ease;
    position:fixed;
    z-index: 10;
}
@keyframes blink {
    0%{
        opacity: 0.8;
    }
    50%{
        opacity: 0.6;
    }
    100%{
        opacity: .8;
    }
}

#sendeder
{
    width:0;
    height:0;
    background: #650668;
    opacity: 0.8;
    position:sticky;
    top:0;
    z-index: 100;
    overflow:hidden;
    display:flex;
    justify-content: space-around;
    align-items: center;
    color:#eacceb;
}

#sendeder span
{
    font-size: 30;
}

#type
{
    align-self: center;
    display:flex;
    width: 30vw;
    margin: 1vh;
    overflow:hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,.5);
}

#userdatacontainer
{
    display: flex;
    flex-direction: column;
}

.rgpdul{
    display:inline-block;
    margin-left:50px;
    max-width: calc( 100% - 30px );
}
.rgpdul li{
    text-align: start;
    list-style-type: decimal;
}

#type > section
{
    transform: translateX(var(--slide-account));
    transition:1s;
    padding: 4%;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    min-width: 92%;
    max-width: 92%;
}

form
{
    display:flex;
    flex-direction: column;
}

iframe{
    flex:1;
    border:none;
}

#pool-connector{
    display:flex;
    flex-direction: column;
}
#pool-creator, #pool-joiner
{
    margin:10px;
}
#pool-creator input
{
    width:auto;
}

textarea{
    width:100%;
    max-width:100%;
    min-width:100%;
}

h3{
    margin-top: 15px;
    margin-bottom: 20px;
}

label{
    text-shadow: #8E44AD 1px 1px 10px;
    margin-left: 10px;
}

p{
    margin-bottom: 5px;
}