.password-container {
        position: relative;
        width: 100%;
    }

    .password-container input {
        width: 100%;
        padding-right: 35px;
        /* Memberi ruang untuk icon */
    }

    .password-toggle {
        position: absolute;
        right: 10px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
        color: #666;
        transition: color 0.3s ease;
    }

    .password-toggle:hover {
        color: #333;
    }

    .password-toggle i {
        font-size: 16px;
    }

    /* Optional: Animation untuk icon */
    .password-toggle i.fa-eye-slash {
        animation: blink 0.5s;
    }

    @keyframes blink {
        0% {
            transform: scale(1);
        }

        50% {
            transform: scale(1.1);
        }

        100% {
            transform: scale(1);
        }
    }

    .alert {
        padding: 15px;
        margin-bottom: 20px;
        border-radius: 4px;
        display: flex;
        align-items: center;
        gap: 10px;
    }

    .alert-danger {
        background-color: #ffe6e6;
        color: #dc3545;
        border: 1px solid #ffcccc;
    }

    .alert-success {
        background-color: #e6ffe6;
        color: #28a745;
        border: 1px solid #ccffcc;
    }

    .alert i {
        font-size: 18px;
    }