body {
    font-family: Arial, sans-serif;
    --ds-color-purple-100: #595998;
    --page-background-color: radial-gradient(66.5% 221.21% at 136.03% -61.44%, rgb(120 18 215 / 40%) 0%, rgb(47 8 213 / 0%) 92.09%), radial-gradient(93.54% 126.91% at 29.15% -56.29%, rgb(73 54 217 / 70%) 0%, rgba(157, 121, 127, 0) 92.09%), radial-gradient(86.19% 101.84% at -17.13% -24.8%, rgb(222 34 216 / 70%) 0%, rgb(22 21 30) 92.09%), var(--ds-color-purple-100);
    background: var(--page-background-color);
    background-attachment: fixed;
}

.form-container {
    height: auto;
    background-color: #ffffff08;
    backdrop-filter: blur(10px);
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 10px;
    box-sizing: border-box;
    padding: 20px 30px;
    color: white;
}

hr {
    border-color: #ffffff20;
}

.title {
    text-align: center;
    font-family: ClashDisplay-Semibold, sans-serif;
    margin: 10px 0 30px 0;
    font-size: 28px;
    font-weight: 800;
}

.form {
    width: 100%;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 15px;
    font-family: ClashDisplay-Semibold, sans-serif;
}

.input {
    border-radius: 20px;
    border: 1px solid #c0c0c0;
    outline: 0 !important;
    box-sizing: border-box;
    padding: 12px 15px;
    font-family: ClashDisplay-Semibold, sans-serif;
    color: #000;
}

.form-btn {
    padding: 10px 15px;
    font-family: ClashDisplay-Semibold, sans-serif;
    border-radius: 20px;
    border: 0 !important;
    outline: 0 !important;
    background: #a211ff;
    color: white;
    cursor: pointer;
    box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.form-btn:active {
    box-shadow: none;
    transition: all 100ms;
}

.sign-up-label {
    margin: 0;
    font-size: 10px;
    color: #747474;
    font-family: ClashDisplay-Semibold, sans-serif;
}

.sign-up-link {
    margin-left: 1px;
    font-size: 13px;
    text-decoration: underline;
    text-decoration-color: #843dff;
    color: rgb(178, 45, 255);
    cursor: pointer;
    font-weight: 800;
    text-align: center;
}

.quick-login-button {
    border-radius: 20px;
    box-sizing: border-box;
    padding: 10px 15px;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px,
    rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 11px;
    gap: 5px;
    font-family: ClashDisplay-Semibold, sans-serif;
    border: 0 !important;
    outline: 0 !important;
}

.quick-login-button {
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
}

.quick-login-button:hover {
    filter: grayscale(40%);
    transition: all 100ms;
}

.quick-login-button:active {
    box-shadow: none;
}

i {
    font-size: 18px;
    margin-bottom: 1px;
}

.animate-slowFadeIn {
    animation: fadeIn .5s ease;
}

#mute-button i {
    width: 20px;
    height: 20px;
}

#mute-button .fa-volume-mute {
    display: none;
}

#mute-button.muted .fa-volume-mute {
    display: block;
}

#mute-button.muted .fa-volume-up {
    display: none;
}


@keyframes fadeIn {
    0% {
        transform: translateY(25px);
        opacity: 0
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}
