html, body {
    background: black;
    margin: 0;
    padding: 0;
}

.top-header {
    width: 100vw;
    height: 26vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: 0;
}

.top-header h1 {
    cursor: default;
    user-select: none;
    -webkit-user-select: none;
}

video {
    z-index: -1;
    background: black;
    width: auto;
    height: auto;
    min-width: 100vw;
    min-height: 100vh;
    margin-left: -25%;
    position: fixed;
    top: 0;
    left: 0;
    backdrop-filter: brightness(1.2);
    -webkit-backdrop-filter: brightness(1.2);
    user-select: none;
    -webkit-user-select: none;
}

form {
    color: white;
    background: rgba(0, 0, 0, 0.5);
    width: 36vw;
    height: 48vh;
    border-radius: var(--btn-radius);
    padding: 30px;
    box-sizing: border-box;
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.2) inset, 0 0 0 1px rgba(0, 0, 0, 0.5), 0 5px 20px 5px rgba(0, 0, 0, 0.4);
    position: fixed;
    top: 26vh;
    left: 32vw;
    backdrop-filter: blur(20px) saturate(2) brightness(0.4);
    -webkit-backdrop-filter: blur(20px) saturate(2) brightness(0.4);
}

form input {
    /*box-sizing: border-box;
    margin: 0;

    padding: 12px 18px;
    border-radius: 30px;
    border: 1px solid #1d2c3d;
    background: #112133 !important;
    background-color: #112133 !important;
    color: var(--text);
    font-size: 1rem;*/
    background: var(--card-bg-dark) !important;
    min-width: unset;
    width: 100%;

    /*flex: 1;*/
}

form a, form a:any-link {
    color: #00c9d9;
    text-decoration: none;
}

form a:hover {
    text-decoration: underline;
}