
        .signIn-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background-color: rgba(0, 0, 0, 0.7);
            display: flex;
            justify-content: center;
            align-items: center;
            transition: opacity 0.3s ease;
            z-index: 9999;
        }

        .form-container {
            background: #0e1327;
            padding: 30px;
            border-radius: 8px;
            box-shadow: 0 0 20px rgb(0 0 0 / 20%);
            width: 95%;
            color: #fff;
            max-width: 400px;
        }

        .form-toggle {
            display: flex;
            justify-content: center;
            margin-bottom: 20px;
            margin-top: 1em;
        }

        .signIn-overlay button {
            background: linear-gradient(120deg, #bb5de3, #709fce, #27e0b8);
            color: white;
            border: none;
            padding: 10px;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s ease;
        }

        .signIn-overlay button:hover {
            opacity: .9;
        }

        .signIn-overlay button:disabled {
            background-color: #ccc;
            cursor: not-allowed;
        }

        .signIn-overlay .form {
            display: flex;
            flex-direction: column;
        }

        .signIn-overlay input[type="email"],
        .signIn-overlay input[type="password"],
        .signIn-overlay input[type="text"] {
            padding: 10px;
            margin-bottom: 15px;
            border: 1px solid #ccc;
            border-radius: 5px;
            background: #161a33 !important;
        }

        .signIn-overlay input[type="email"]:focus,
        .signIn-overlay input[type="password"]:focus,
        .signIn-overlay input[type="text"]:focus {
            border-color: #007bff;
            outline: none;
        }

        .signIn-overlay .hidden {
            display: none;
        }

        #captchaContainer {
            margin: 10px 0;
            font-weight: bold;
            text-align: center;
        }

        #welcomeMessage {
            text-align: center;
            display: none;
        }

        #welcomeMessage h1 {
            margin-bottom: 20px;
        }

        #signOutButton {
    padding: 1em 0;
    border: none;
    background: transparent;
}

        .captcha-wrap {
            display: flex;
            border: 1px solid #999;
            border-radius: .7em;
            overflow: hidden;
            height: 3em;
            margin-bottom: 1em;
            padding: .5em;
        }

        .captcha-wrap * {
            margin: 0 !important;
        }

        .captcha-wrap input {
            border: none !important;
            width: 60%;
            background: transparent !important;
        }

        #captchaContainer {
            height: 100%;
            flex: 1;
            background: linear-gradient(120deg, #bb5de3, #709fce, #27e0b8);
            color: #fff;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: .7em;
        }

        button[type=submit] {
            background: #613af1;
        }

        button[type=submit]:disabled {
            background: #888;
        }

        .form-container input {
            color: #fff;
        }

        button#toggleToSignIn, button#toggleToSignUp {
            background: transparent;
            padding: 0;
            font-weight: 900;
            text-decoration: underline;
        }
        
        @media (max-width: 48em) {
          .form-container {
            max-width: 95%;
          }
          .captcha-wrap input {
            border: none !important;
          }
        }