        body {
            background-color: #f4f6f9;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
            margin: 0;
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
            position: relative;
        }

        .form {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 25px;
            margin-bottom: 25px;
            background-color: #ffffff;
            padding: 35px;
            width: 420px;
            border-radius: 20px;
            box-shadow: 0 10px 25px rgba(0,0,0,0.05);
        }

        ::placeholder { color: #a0a0a0; }

        .flex-column > label { color: #151717; font-weight: 600; font-size: 14px; }

        .inputForm {
            border: 1.5px solid #ecedec;
            border-radius: 10px;
            height: 48px;
            display: flex;
            align-items: center;
            padding: 0 12px;
            transition: 0.2s ease-in-out;
            background-color: #fff;
        }

        .input {
            margin-left: 10px;
            border: none;
            width: 100%;
            height: 100%;
            font-size: 14px;
            background: transparent;
        }

        .input:focus { outline: none; }
        .inputForm:focus-within { border: 1.5px solid #2d79f3; }

        .toggle-password {
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 4px;
            color: #666;
        }

        .button-submit {
            margin: 15px 0 5px 0;
            background-color: #151717;
            border: none;
            color: white;
            font-size: 15px;
            font-weight: 600;
            border-radius: 10px;
            height: 50px;
            width: 100%;
            cursor: pointer;
            transition: 0.2s;
        }

        .button-submit:hover { background-color: #252727; }

        .p { text-align: center; color: #555; font-size: 14px; margin: 5px 0; }
        .span { color: #2d79f3; font-weight: 600; text-decoration: none; }

        .alert-danger {
            padding: 12px;
            border-radius: 8px;
            font-size: 13px;
            margin-bottom: 10px;
            background-color: #fde8e8;
            color: #e53e3e;
            border: 1px solid #f8b4b4;
        }

        /* ANLIK PUSH NOTIFICATION CARD */
        .notification-card {
            position: fixed;
            top: 20px;
            right: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
            background-color: #ffffff;
            border-left: 4px solid #22c55e;
            padding: 16px 20px;
            border-radius: 12px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.12);
            transform: translateX(120%);
            transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
            z-index: 9999;
        }

        .notification-card.show {
            transform: translateX(0);
        }

        .notification-icon {
            width: 32px;
            height: 32px;
            background-color: #dcfce7;
            color: #22c55e;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .notification-content h4 {
            margin: 0;
            font-size: 14px;
            color: #151717;
        }

        .notification-content p {
            margin: 2px 0 0 0;
            font-size: 12px;
            color: #666;
        }