    :root {
        --bg1: rgba(255, 255, 255, 0.1);
        --bg2: #202031;
        --border-color: #676773;
        --accent: #00f2fe;
        --accent2: #ff00ff;
    }

    body,
    html {
        height: 100%;
        margin: 0;
        margin-right: 20px;
    }

    /* background */
    #bgCanvas {
        position: fixed;
        top: 0;
        left: 0;
        width: 100vw;
        height: 100vh;
        z-index: 0;
        pointer-events: none;
    }

    body {
        background-color: #202031;
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        background-attachment: fixed;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100vh;
        margin: 0;
    }

    #bg-video {
        position: fixed;
        width: 70%;
        height: auto;
        top: 70%;
        left: 70%;
        transform: translate(-70%, -70%);
        object-fit: contain;
        z-index: -1;
    }

    #back-button {
        font-size: 28px;
        margin-top: 0;
        transition: all 2s ease;
        text-align: center;
        color: #fff;
        cursor: pointer;
        margin-top: 20px;

        &:hover {
            background: linear-gradient(var(--accent), var(--accent2));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
    }

    .card {
        border-radius: 10px;
        padding: 20px;
        background-color: rgba(256, 256, 256, 0.1);
        box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
        height: 400px;
        width: 405.5px;
        transform-origin: center;
        border: 1px solid var(--border-color);
        backdrop-filter: blur(3px);
    }

    .title {
        font-size: 28px;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        margin: 10px 0 30px 0;
        margin-top: -35px;
        text-align: center;
        font-weight: 800;
        color: #fff;
    }

    .form {
        width: 100%;
        flex-direction: column;
        display: flex;
        gap: 18px;
    }

    .input {
        border-radius: 30px;
        border: 1px solid var(--border-color);
        color: rgb(255, 255, 255);
        font-weight: 800;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        outline: 0px !important;
        box-sizing: border-box;
        padding: 15px 17px;
        transition: all 0.75s ease;
        margin: 3px;
        background: var(--bg1);

        &::placeholder {
            color: #fff;
        }

        &:focus {
            transform: translateY(-5px);
        }
    }

    .forgot {
        text-decoration-color: rgb(79, 79, 79);
        color: #fff;
        text-align: start;
        margin-top: -4px;
    }

    .forgot-page {
        cursor: pointer;
        font-size: 12px;
        color: #fff;
        transition: all 0.75s ease;
        font-weight: 800;
        text-decoration: none;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    }

    .forgot-page:hover {

        text-decoration: underline;
    }

    .login-button {
        width: 100%;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        border-radius: 30px;
        margin-top: 10px;
        outline: 0px !important;
        border: 1px solid var(--border-color);
        font-weight: bold;
        background-color: var(--bg1);
        padding: 15px 17px;
        color: white;
        cursor: pointer;
        font-size: 14px;
        transition: all 0.75s ease;
    }

    .login-button:hover {
        transform: translateY(-3px);
    }

    .login-with-another {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 20px;
    }

    .signup {
        text-align: start;
        font-weight: 800;
        font-size: 11px;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        margin-top: 30px;
        color: #fff;
        cursor: default;
    }

    .signup-page {
        cursor: pointer;
        font-size: 13px;
        text-decoration: none;
        color: teal;
        font-weight: 800;
        font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
        transition: all 1s easy;
    }

    .signup-page:hover {

        text-decoration: underline;
    }