input:required {
    outline: none;
    box-shadow: none;
    }

    body {
            font-family: Arial, sans-serif;
            background-color: #f0f0f0;
            justify-content: center;
            align-items: center;
            margin-top: 100px;
        }

        .error_color { 
            color: red !important;  
        }

        .login-container {
            width: 90%;
            text-align: center;
            background-color: #fff;
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
            max-width: 600px;
            margin-left: calc(50% - 320px);
            margin-top: 60px;
        }
        .login-container h2 {
          color: #333;
          font-size: 20px;
          margin-bottom: 16px;
          text-align: center;
        }
        .login-container h3 {
            margin-top: 0px;
            font-size: 18px;
            margin-bottom: 18px;
            font-weight: normal;
        }

        .login-container input[type="text"],.login-container input[type="email"], .login-container input[type="password"] {
            width: 92.5%;
            padding: 20px;
            margin-top: 10px ;
            border: 1px solid #ccc;
            border-radius: 5px;
            font-size: 1.3em;
        }
        .login-container input[type="submit"] {
            width: 100%;
            padding: 12px;
            margin-top: 10px;
            margin-bottom: 10px;
            background-color: #000;
            border: none;
            border-radius: 5px;
            color: #fff;
            font-size: 1.3em;
            cursor: pointer;
        }
        .login-container input[type="submit"]:hover {
            background-color: #999;
        }
        .center {
            text-align: center;
        }

        .underline-link {
            margin-top: 2px;
            margin-bottom: 10px;
        }

        .margin-medium {
            margin-bottom: 15px;
        }

        .logo {  
            /* mix-blend-mode: multiply; */  
        }

        a {
            color:#000;
        }

        .margin-buttons{
            margin-top: 15px;
            margin-bottom: 20px;
        }
        .nb_scan {
            margin-top: 10px;
            margin-bottom: 16px;
            display: none;
        }
        .nb_scan_total{
            font-weight: bold;
            font-size: 26px
        }
        .scan-count {
            margin-top: 5px;
            margin-bottom: 2px;
            display: block;
        }
        .styled-hr-large {
            border: none;
            border-top: 1px solid #d3d3d3;
            width: 100%;
            margin-top: 10px;
            margin-bottom: 15px;
            }

        .styled-hr-small {
            border: none;
            border-top: 1px solid #d3d3d3;
            width: 75%;
            margin-top: 10px;
            margin-bottom: 15px;
        }
        .total-count-box {
            background-color: #ADD8E6; /* Black background */
            color: #000; /* White text */
            padding: 10px; /* Add some padding inside the box */
            border-radius: 8px; /* Rounded corners */
            text-align: center; /* Center-align the text */
            display: inline-block; /* Ensure it's a nice box shape */
            font-weight: bold; /* Make the text bold */
            margin-top: 10px;
            margin-bottom: 15px;
            width: 75%; /* Set width to 80% of parent container */
            box-sizing: border-box; /* Include padding in the width calculation */
        }
        .product-box {
            background-color: #f0f0f0; /* Light gray background */
            border-radius: 10px; /* Rounded corners */
            padding: 20px; /* Inner padding */
            margin: 20px 0; /* Spacing around the box */
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* Optional: Subtle shadow */
        }

        form{text-align: center;}

        @media only screen and (max-width: 768px) {
            body {
                /* background-color: lightblue;*/ 
                margin-top: 60px;
            }

            .login-container h2 {
            margin-top: 12px; 
            font-size: 18px;
            margin-bottom: 10px;
            }

            .login-container h3 {
            margin-top: 0px; 
            font-size: 16px;
            margin-bottom: 16px;
            font-weight: normal;
            }

            .login-container {
            margin: unset;
            margin-top: 40px;
            margin-left: 20px;
            width: calc(100% - 80px) !important;
            }
            .login-container input[type="text"], .login-container input[type="email"], .login-container input[type="password"] {
            width: 92%;
            padding: 10px;
            font-size: 1em;
            }
            
        }