        /* Add this CSS to your stylesheet */
        body,
        html {
            background-color: #4a4a4a;
            /* Strong gray background */
        }

        .login-container {
            margin-left: auto;
            margin-right: auto;
        }

        .form-label {
            font-weight: bold;
        }

        .form-input {
            border-bottom: 2px solid #ccc;
            /* Change color as needed */
        }

        .submit-btn {
            margin: 0;
            /* Removes any default margin */
            padding: 8px 16px;
            /* Adjust padding as needed */
        }

        .top-toast {
            top: 0;
            border-radius: 0;
        }

        .tooltipped {
            display: inline-block;
            /* Make icon inline */
            vertical-align: middle;
            /* Align icon with text */
            margin-left: 5px;
            /* Space between label and icon */
        }

        /* Left align tooltip content */
        .material-tooltip>span {
            text-align: left !important;
        }