            * {
            box-sizing: border-box;
            /*#142c8e; the color towatch*/
            }
            
        body {
            font-family: 'Open Sans', sans-serif;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            align-items: center;
            background-image: url('logs.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed
        }
        #form-container {
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            text-align: center;
            width: 100%; /* Adjusts to the device width */
            max-width: 420px; 
            margin-left: auto; /* Centers the form horizontally */
            margin-right: auto;
            padding-bottom: 20px;
        }

        h2 {
            color: #333;
        }

        h3 {
            color: #555;
        }

        label {
            display: block;
            margin: 15px 0 5px;
            color: #777;
            font-size: 19px;
        }
        p{
            font-size:20px;
            padding:14px;
        }
        input {
            width: calc(100% - 16px);
            padding: 15px;
            margin-bottom: 15px;
            box-sizing: border-box;
            border: 1px solid #ccc;
            border-radius: 4px;
            outline: none;
            font-size: 17px;
        }

         .regbtn {
            background-color: #007bff;
            color: #fff;
            padding: 15px 30px;
            font-size: 1.2em;
            border: none;
            border-radius: 5px;
            cursor: pointer;
            transition: background-color 0.3s, transform 0.3s;
        }

        .regbtn:hover {
            background-color: #0056b3;
            transform: scale(1.05);
        }

        .error-message {
            color: #ff0000;
            margin-bottom: 15px;
            font-size: 14px;
        }

         .password-container {
            position: relative;
        }

        .password-toggle {
            position: absolute;
            right: 10px;
            top: 50%;
            transform: translateY(-50%);
            cursor: pointer;
        }

        a {
            color: #fff;
            text-decoration: none;
        }

        #captcha-text {
           color: greenyellow;
           background: #333;
           user-select: none;
        }
        #captcha-error{
            user-select: none;
        }

        .checkbox-container input[type="checkbox"] {
        width: 20px; 
        height: 20px; 
        }
        .checkbox-container label {
            font-size: 14px;
        }

        .checkbox-container {
            display: flex;
            margin-top: -15px;
        }

        .checkbox-container input {
            margin-right: 0px;
        }

        #loading-spinner {
            display: none;
            font-size: 24px;
            color: #007bff;
        }

        @media screen and (max-width: 500px){
            #loading-container {
                top: 30%;
                left: 26%;
        }
        }
    @media screen and (min-width: 501px){
            #loading-container {
                top: 30%;
                left: 40%;
        }
        }

    #loading-container {
        display: flex;
        align-items: center;
        justify-content: center;
        position: fixed;
       /* width: 100%;
        height: 100%;
        background-color: rgba(255, 255, 255, 0.8); background color and opacity */
        z-index: 9999;
    }

    #loading-container img {
        width: 200px; 
        height: 200px; 
        animation: spin 1s linear infinite;
    }
    
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }