.password-strength-bar {
            width: 100%;
            height: 10px;
            border-radius: 5px;
            margin-top: 10px;
        }

        .password-strength {
            text-align: center;
            font-size: 18px;
            margin-top: 10px;
            font-weight: bold;
            display: block;
            height: 6px;
            transition: width 0.5s ease; /* Added transition for smooth width change */
        }

        .password-strength.weak {
            background-color: #ff4c4c;
        }

        .password-strength.medium {
            background-color: #ffbb33;
        }

        .password-strength.strong {
            background-color: #4CAF50;
        }

        .strength-indicator {
            text-align: center;
            font-size: 18px;
            font-weight: bold;
            margin-top: 15px;
        }

        .weak-indicator {
            color: red;
        }

        .medium-indicator {
            color: orange;
        }

        .strong-indicator {
            color: green;
        }

        #password-input {
            width: 100%;
            padding: 10px;
            font-size: 16px;
            border-radius: 4px;
            border: 1px solid #ccc;
            margin-top: 10px;
        }

        .password-toggle-btn {
            margin-top: 10px;
            font-size: 14px;
            padding: 6px 12px;
            border: 1px solid #ccc;
            background-color: #f1f1f1;
            cursor: pointer;
        }

        .password-toggle-btn:hover {
            background-color: #ddd;
        }

        .character-options {
            margin-top: 20px;
            display: none; /* Hidden by default */
        }

        .checkmark {
            width: 20px;
            height: 20px;
            display: inline-block;
            border-radius: 4px;
            margin-right: 10px;
            background-color: transparent;
            border: none;
            position: relative;
        }
        .checkmark:after{
            content: 'X';
            position: absolute;
            top: 2px;
            left: 2px;
            color: #f30404; /* Green color for tick */
            font-size: 1.2rem; /* Slightly larger font size for better visibility */
            animation: fadeIn 0.5s ease;
            font-weight: bold;
        }

        .checkmark-checked::after {
            content: '✓';
            position: absolute;
            top: 2px;
            left: 2px;
            color: #00ba27; /* Green color for tick */
            font-size: 1.4rem; /* Slightly larger font size for better visibility */
            animation: fadeIn 0.5s ease;
            font-weight: bold;
        }

        .checkmark-checked {
            background-color: transparent; /* Green background when checked */
            position: relative;
            border: 0; /* Green border to match the tick mark */
            width: 20px; /* Adjusted width */
            height: 20px; /* Adjusted height */
            border-radius: 4px;
            display: inline-block;
        }


        @keyframes fadeIn {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }