:root {
            --primary-color: #58E0B7;
        }

        body {
            background: linear-gradient(135deg, #121212, #1e1e1e);
            color: #ffffff;
            font-family: 'Arial', sans-serif;
            margin: 0;
            padding: 0;
        }

#register-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            min-height: 100vh;
            padding: 32px 16px;
            position: relative;
            gap: 20px;
        }

        .register-language-switcher {
            width: 100%;
            max-width: 400px;
            margin-right: 0;
            justify-content: flex-end;
        }

        .register-box {
            background: linear-gradient(135deg, #1e1e1e, #2c2c2c);
            border-radius: 8px;
            padding: 30px;
            width: 100%;
            max-width: 400px;
            box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.5);
        }

        .register-box h2 {
            margin-bottom: 20px;
            color: var(--primary-color);
            text-align: center;
        }

        .register-box input[type="text"],
        .register-box input[type="password"],
        .register-box input[type="email"] {
            width: 100%;
            padding: 10px;
            margin: 10px 0;
            background-color: #2c2c2c;
            border: 1px solid #444;
            border-radius: 5px;
            color: #ffffff;
        }

        .register-box input[type="checkbox"] {
            margin-right: 10px;
            accent-color: var(--primary-color);
        }

        .register-box label {
            display: flex;
            align-items: center;
            font-size: 0.9em;
            color: #fff;
        }

        .register-box button {
            width: 100%;
            padding: 10px;
            background-color: var(--primary-color);
            border: none;
            border-radius: 5px;
            cursor: pointer;
            color: #000;
            margin-top: 15px;
            transition: background-color 0.3s ease;
        }

        .register-box button:disabled {
            background-color: #555;
            cursor: not-allowed;
        }

        a {
            text-decoration: none;
        }

        .register-login-hint {
            color: #ffffff;
        }

        .register-agree-copy {
            display: inline;
        }

        #preloader {
            display: grid;
            place-items: center;
            height: 100vh;
        }

        #preloader div {
            text-align: center;
        }

        #logoimg {
            max-width: 50%;
            /* loading image ratio */
            height: auto;
        }

        @media (max-width: 767px) {
            #register-container {
                padding-top: 20px;
                justify-content: flex-start;
            }

            .register-language-switcher {
                max-width: 100%;
            }
        }
