/* Override max-width untuk register card agar lebih lebar sedikit */
        .login-card {
            max-width: 550px;
        }

        /* Override body untuk enable scroll - PENTING! */
        body {
            overflow-y: auto !important;
            overflow-x: hidden !important;
        }

        /* Perbaiki container agar bisa scroll */
        .login-container {
            min-height: 100vh;
            display: flex;
            align-items: flex-start !important;
            justify-content: center;
            padding: 60px 20px 60px 20px !important;
        }

        .password-hint {
            font-size: 12px;
            color: #999;
            margin-top: 5px;
            display: block;
        }

        .btn-register {
            background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
            border: none;
            border-radius: 10px;
            padding: 12px;
            font-weight: 600;
            font-size: 16px;
            color: white;
            width: 100%;
            transition: all 0.3s ease;
            margin-top: 20px;
        }

        .btn-register:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
            background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
        }

        .btn-register:disabled {
            opacity: 0.7;
            cursor: not-allowed;
        }

        .login-link {
            text-align: center;
            margin-top: 20px;
            color: #666;
            font-size: 14px;
        }

        .login-link a {
            color: #667eea;
            text-decoration: none;
            font-weight: 600;
            transition: color 0.3s ease;
        }

        .login-link a:hover {
            color: #764ba2;
            text-decoration: underline;
        }

        /* Error/Success Messages */
        @keyframes shake {

            0%,
            100% {
                transform: translateX(0);
            }

            10%,
            30%,
            50%,
            70%,
            90% {
                transform: translateX(-10px);
            }

            20%,
            40%,
            60%,
            80% {
                transform: translateX(10px);
            }
        }

        .shake {
            animation: shake 0.6s;
        }

        .error-message {
            background: #fee;
            border-left: 4px solid #dc3545;
            padding: 12px 15px;
            margin-bottom: 20px;
            border-radius: 8px;
            color: #721c24;
            animation: fadeInDown 0.5s ease-out;
        }

        @keyframes fadeInDown {
            from {
                opacity: 0;
                transform: translateY(-20px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .success-message {
            background: #d4edda;
            border-left: 4px solid #28a745;
            padding: 12px 15px;
            margin-bottom: 20px;
            border-radius: 8px;
            color: #155724;
            animation: fadeInDown 0.5s ease-out;
        }

        .input-error {
            border-color: #dc3545 !important;
        }

        .input-error:focus {
            border-color: #dc3545 !important;
            box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25) !important;
        }

        .password-hint.text-success {
            color: #28a745 !important;
        }

        .password-hint.text-danger {
            color: #dc3545 !important;
        }