* {
    margin: 0;
    padding: 0
}

body {
    height: 100vh;
    width: 100vw;
    background-color: #032329;
    overflow: hidden;
    position: absolute;
    font-family: Neue Montreal, sans-serif;
}

body:after {
    content: "";
    position: absolute;
    background: radial-gradient(circle, rgb(0 188 204 / 12%) 0%, rgba(0, 185, 236, 0) 40%);
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    animation: radialGradient1 20s linear infinite;
    z-index: -1;
    top: 0;
    left: 0;
}

body:before {
    content: "";
    position: absolute;
    background: radial-gradient(circle, rgb(0 188 204 / 12%) 0%, rgba(0, 185, 236, 0) 40%);
    background-repeat: no-repeat;
    width: 100%;
    height: 100%;
    animation: radialGradient2 20s linear infinite;
    z-index: -2
}

@keyframes radialGradient1 {
    0% {
        background-position: -450px -400px
    }

    25% {
        background-position: 450px -400px
    }

    50% {
        background-position: -450px 400px
    }

    75% {
        background-position: 450px 400px
    }

    100% {
        background-position: -450px -400px
    }
}

@keyframes radialGradient2 {
    0% {
        background-position: -450px 400px
    }

    25% {
        background-position: -450px -400px
    }

    50% {
        background-position: 450px 400px
    }

    75% {
        background-position: 450px -400px
    }

    100% {
        background-position: -450px 400px
    }
}

.webgl {
    position: fixed;
    top: 0;
    left: 0;
    outline: none;
    z-index: -1
}

nav {
    display: flex;
    gap: 1rem;
    background: #8b8b8b12;
    font-size: 20px;
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    font-family: sans-serif;
    text-decoration: none;
    justify-content: flex-end;
    padding: .5rem 2rem
}

a {
    text-decoration: none;
    color: white;
}

.tab {
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    border-radius: 4px;
    background: #8b8b8b12
}

section {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 25%;
    min-height: 100vh;
    position: relative;
    font-family: Neue Montreal, sans-serif;
    padding-left: 10%
}

.actionTab {
    flex: 1 1 20rem
}

.logoTab {
    padding: 2rem
}

form {
    margin: 2rem
}

label {
    font-size: 1rem;
    color: #fff
}

h3 {
    font-weight: 500
}

input {
    background-image: linear-gradient(#ffffff4a, #ffffff4a);
    background-color: #fff0;
    border-bottom: 2px solid white;
    border: none;
    font-size: 1.125rem;
    -webkit-backdrop-filter: blur(40px);
    backdrop-filter: blur(40px);
    padding: 0.5rem;
    width: 95%;
    border-radius: 4px;
}

input:focus,
input:active {
    background-color: #ffffff90;
    border: none;
    border-bottom: 2px solid #33cccc;
    text-decoration: none;
}

button {
    width: 99%;
    padding: 0.7rem;
    border-radius: 4px;
    border: none;
    margin-top: 2rem;
    background-color: #33cccc;
    box-shadow: 0px 12px 18px -6px rgba(0, 0, 0, 0.3);
    transition: 500ms ease-in-out;
}

button:hover {
    cursor: pointer;
    transform: scale(1.01);
}

.loginLinkRight {
    width: 98%;
    display: flex;
    justify-content: flex-end;
    margin-top: 0.5rem;
}

h2 {
    margin-top: 0.75rem;
}